From 85d9fa1922a5f408dd40f18287f01135dd826e4d Mon Sep 17 00:00:00 2001 From: David Leadbeater Date: Sun, 6 Jul 2014 21:51:22 +0100 Subject: [PATCH] Fix compiler warning in IPv6 check (This was why I saw a warning from the IPv4 code path, now fixed by 7949e4c). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 40171a03..29fee0bd 100644 --- a/configure.ac +++ b/configure.ac @@ -628,7 +628,7 @@ if test "x$want_ipv6" = "xyes"; then #include #include #include ], - [struct in6_addr i;], + [struct in6_addr i = in6addr_any; return &i == &i;], have_ipv6=yes, )]) if test $have_ipv6 = yes; then