From: risso Date: Fri, 2 Aug 2002 14:01:09 +0000 (+0000) Subject: Small fix to reflect the change in the ip6_misc.h file of libpcap X-Git-Tag: tcpdump-3.8-bp~395 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/012652d39b74a464154c8c4d1d73b81a37a341ef Small fix to reflect the change in the ip6_misc.h file of libpcap --- diff --git a/print-ripng.c b/print-ripng.c index 1b421d0c..6b4f6b7f 100644 --- a/print-ripng.c +++ b/print-ripng.c @@ -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 +#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