]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Small fix to reflect the change in the ip6_misc.h file of libpcap
authorrisso <risso>
Fri, 2 Aug 2002 14:01:09 +0000 (14:01 +0000)
committerrisso <risso>
Fri, 2 Aug 2002 14:01:09 +0000 (14:01 +0000)
print-ripng.c

index 1b421d0cb99f82c8c55374e78b01d18b00907b55..6b4f6b7f9aea3e831a326f265b11424080755440 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-ripng.c,v 1.11 2002-08-01 08:53:26 risso Exp $";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ripng.c,v 1.12 2002-08-02 14:01:09 risso Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -32,6 +32,10 @@ static const char rcsid[] =
 
 #include <tcpdump-stdinc.h>
 
+#ifdef WIN32
+const struct in6_addr in6addr_any;        /* :: */
+#endif /* WIN32 */
+
 #ifdef __MINGW32__
 int
 IN6_ADDR_EQUAL(const struct in6_addr *a, const struct in6_addr *b)
@@ -40,6 +44,7 @@ IN6_ADDR_EQUAL(const struct in6_addr *a, const struct in6_addr *b)
 }
 
 #define IN6_IS_ADDR_UNSPECIFIED(a) IN6_ADDR_EQUAL((a), &in6addr_any)
+
 #endif /* __MINGW32__ */
 
 #include <errno.h>