From: Roy Marples Date: Fri, 11 Mar 2016 20:29:20 +0000 (+0000) Subject: Initialise struct to pass configure on FreeBSD. X-Git-Tag: v6.10.2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8266733501cdba5cdb8e3391b73fc4980c3c50d3;p=thirdparty%2Fdhcpcd.git Initialise struct to pass configure on FreeBSD. --- diff --git a/configure b/configure index 867b05e7..390dfec6 100755 --- a/configure +++ b/configure @@ -546,7 +546,7 @@ cat <_inet_ntoa.c #include #include int main(void) { - struct in_addr in; + struct in_addr in = {}; inet_ntoa(in); return 0; }