diff options
Diffstat (limited to 'packet-ppp.c')
-rw-r--r-- | packet-ppp.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/packet-ppp.c b/packet-ppp.c index a3688b10ea..f28a173e2f 100644 --- a/packet-ppp.c +++ b/packet-ppp.c @@ -1,7 +1,7 @@ /* packet-ppp.c * Routines for ppp packet disassembly * - * $Id: packet-ppp.c,v 1.93 2002/05/22 09:52:14 guy Exp $ + * $Id: packet-ppp.c,v 1.94 2002/08/02 23:35:56 jmayer Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -28,10 +28,6 @@ # include "config.h" #endif -#ifdef HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif - #include <string.h> #include <glib.h> #include "prefs.h" @@ -1334,7 +1330,7 @@ fcs32(guint32 fcs, tvbuff_t * tvbuff) } void -capture_ppp_hdlc( const u_char *pd, int offset, int len, packet_counts *ld ) { +capture_ppp_hdlc( const guchar *pd, int offset, int len, packet_counts *ld ) { if (!BYTES_ARE_IN_FRAME(offset, len, 2)) { ld->other++; return; |