diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-08-03 20:06:46 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-08-03 20:06:46 +0000 |
commit | a7b0159be41462e1da8d651fd4d7c84e995d4a4d (patch) | |
tree | 9d0b849a19d1561f31f962238a3ecb1972932584 /packet-ipv6.c | |
parent | faa7402f6e60d01a7430ef83f15ec583c4c44ea3 (diff) | |
download | wireshark-a7b0159be41462e1da8d651fd4d7c84e995d4a4d.tar.gz wireshark-a7b0159be41462e1da8d651fd4d7c84e995d4a4d.tar.bz2 wireshark-a7b0159be41462e1da8d651fd4d7c84e995d4a4d.zip |
We don't use anything from <sys/socket.h> (we need to know the AF_INET6
values of the various BSDs that support DLT_NULL, but those aren't
necessarily the AF_ values on the machine on which you're building
Ethereal), so we don't need to include it.
svn path=/trunk/; revision=5942
Diffstat (limited to 'packet-ipv6.c')
-rw-r--r-- | packet-ipv6.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/packet-ipv6.c b/packet-ipv6.c index d058158417..d301b47913 100644 --- a/packet-ipv6.c +++ b/packet-ipv6.c @@ -1,7 +1,7 @@ /* packet-ipv6.c * Routines for IPv6 packet disassembly * - * $Id: packet-ipv6.c,v 1.85 2002/08/02 23:35:51 jmayer Exp $ + * $Id: packet-ipv6.c,v 1.86 2002/08/03 20:06:46 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -28,10 +28,6 @@ # include "config.h" #endif -#ifdef HAVE_SYS_SOCKET_h -#include <sys/socket.h> -#endif - #include <string.h> #include <stdio.h> #include <glib.h> |