From: Roy Marples Date: Fri, 11 Mar 2016 20:37:17 +0000 (+0000) Subject: Fix configure again X-Git-Tag: v6.10.2~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66cb5dbc7ee2a8e399c4a44d4e095a53c1ff24d0;p=thirdparty%2Fdhcpcd.git Fix configure again --- diff --git a/configure b/configure index 390dfec6..23892e74 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 = { .s_addr = 0 }; inet_ntoa(in); return 0; }