From 1d57bb05f8460d1173c68b902a45527aaec96799 Mon Sep 17 00:00:00 2001 From: risso Date: Tue, 6 Jul 2004 23:45:29 +0000 Subject: [PATCH] Corrected the definition of IN_EXPERIMENTAL (0xfxxxxxxx is the experimental space) --- Win32/Include/ip6_misc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Win32/Include/ip6_misc.h b/Win32/Include/ip6_misc.h index ae115f2..35f67cd 100644 --- a/Win32/Include/ip6_misc.h +++ b/Win32/Include/ip6_misc.h @@ -18,7 +18,7 @@ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * @(#) $Header: /tcpdump/master/libpcap/Win32/Include/ip6_misc.h,v 1.3 2004-04-06 13:30:22 risso Exp $ (LBL) + * @(#) $Header: /tcpdump/master/libpcap/Win32/Include/ip6_misc.h,v 1.4 2004-07-06 23:45:29 risso Exp $ (LBL) */ /* @@ -33,7 +33,7 @@ #define IN_MULTICAST(a) IN_CLASSD(a) -#define IN_EXPERIMENTAL(a) ((((u_int32_t) (a)) & 0xe0000000) == 0xe0000000) +#define IN_EXPERIMENTAL(a) ((((u_int32_t) (a)) & 0xf0000000) == 0xf0000000) #define IN_LOOPBACKNET 127