diff options
Diffstat (limited to 'packet-arp.c')
-rw-r--r-- | packet-arp.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/packet-arp.c b/packet-arp.c index 3fd6bf47b2..20139cb9f2 100644 --- a/packet-arp.c +++ b/packet-arp.c @@ -1,7 +1,7 @@ /* packet-arp.c * Routines for ARP packet disassembly * - * $Id: packet-arp.c,v 1.51 2002/03/10 00:05:20 guy Exp $ + * $Id: packet-arp.c,v 1.52 2002/08/02 23:35:47 jmayer Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -26,10 +26,6 @@ # include "config.h" #endif -#ifdef HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif - #include <string.h> #include <glib.h> #include <epan/packet.h> @@ -769,7 +765,7 @@ dissect_arp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) /* inform resolv.c module of the new discovered addresses */ - u_int ip; + guint ip; const guint8 *mac; /* add sender address in all cases */ |