From e91e221d0259b419054dcb607a70f576b4bf8bca Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 22 Jan 2019 12:43:51 +0100 Subject: [PATCH] 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 --- src/pcap.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/pcap.c b/src/pcap.c index 8af91b5f..93b78928 100644 --- a/src/pcap.c +++ b/src/pcap.c @@ -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;