diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-08-03 20:01:13 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-08-03 20:01:13 +0000 |
commit | faa7402f6e60d01a7430ef83f15ec583c4c44ea3 (patch) | |
tree | dfc795a535cd22d483912162a7e4991d5c02e672 /in_cksum.c | |
parent | 968a88bfdcb88647c4b3c0e187d57b1e30178891 (diff) | |
download | wireshark-faa7402f6e60d01a7430ef83f15ec583c4c44ea3.tar.gz wireshark-faa7402f6e60d01a7430ef83f15ec583c4c44ea3.tar.bz2 wireshark-faa7402f6e60d01a7430ef83f15ec583c4c44ea3.zip |
We don't use anything from <arpa/inet.h>, so we don't need to include
it.
svn path=/trunk/; revision=5941
Diffstat (limited to 'in_cksum.c')
-rw-r--r-- | in_cksum.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/in_cksum.c b/in_cksum.c index 66ee16a843..492ba64fe5 100644 --- a/in_cksum.c +++ b/in_cksum.c @@ -2,7 +2,7 @@ * 4.4-Lite-2 Internet checksum routine, modified to take a vector of * pointers/lengths giving the pieces to be checksummed. * - * $Id: in_cksum.c,v 1.7 2002/08/02 23:35:46 jmayer Exp $ + * $Id: in_cksum.c,v 1.8 2002/08/03 20:01:13 guy Exp $ */ /* @@ -40,10 +40,6 @@ # include "config.h" #endif -#ifdef HAVE_ARPA_INET_H -#include <arpa/inet.h> -#endif - #include <glib.h> #include "in_cksum.h" |