diff options
Diffstat (limited to 'packet-chdlc.c')
-rw-r--r-- | packet-chdlc.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/packet-chdlc.c b/packet-chdlc.c index 1ba74eaaec..493907e5c7 100644 --- a/packet-chdlc.c +++ b/packet-chdlc.c @@ -1,7 +1,7 @@ /* packet-chdlc.c * Routines for Cisco HDLC packet disassembly * - * $Id: packet-chdlc.c,v 1.13 2002/05/30 01:56:54 guy Exp $ + * $Id: packet-chdlc.c,v 1.14 2002/08/02 23:35:48 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 <glib.h> #include <epan/packet.h> #include "etypes.h" @@ -102,7 +98,7 @@ const value_string chdlc_vals[] = { }; void -capture_chdlc( const u_char *pd, int offset, int len, packet_counts *ld ) { +capture_chdlc( const guchar *pd, int offset, int len, packet_counts *ld ) { if (!BYTES_ARE_IN_FRAME(offset, len, 2)) { ld->other++; return; |