mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-04 20:30:38 +09:00
pcap: Correctly initialize sockaddr_in in ssh_pcap_context_set_file()
Error: CLANG_WARNING: src/pcap.c:329:22: warning: The left operand of '!=' is a garbage value Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
@@ -306,7 +306,12 @@ void ssh_pcap_context_set_file(ssh_pcap_context ctx, ssh_pcap_file pcap){
|
||||
static int ssh_pcap_context_connect(ssh_pcap_context ctx)
|
||||
{
|
||||
ssh_session session=ctx->session;
|
||||
struct sockaddr_in local, remote;
|
||||
struct sockaddr_in local = {
|
||||
.sin_family = AF_UNSPEC,
|
||||
};
|
||||
struct sockaddr_in remote = {
|
||||
.sin_family = AF_UNSPEC,
|
||||
};
|
||||
socket_t fd;
|
||||
socklen_t len;
|
||||
int rc;
|
||||
|
||||
Reference in New Issue
Block a user