summaryrefslogtreecommitdiff
path: root/packet-ppp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-03-30 06:15:47 +0000
committerGuy Harris <guy@alum.mit.edu>2001-03-30 06:15:47 +0000
commita65579287dfd4aa701d3cc8086639cef429f7484 (patch)
treed59471ef573cc87cea5c3cdabd05d7678aa34fce /packet-ppp.c
parent949888c04a7a85b847da144d14bf51eedb5bad94 (diff)
downloadwireshark-a65579287dfd4aa701d3cc8086639cef429f7484.tar.gz
Call the capture routine for PPP-in-HDLC-like-framing (RFC 1662) the
"ppp_hdlc" capture routine. svn path=/trunk/; revision=3209
Diffstat (limited to 'packet-ppp.c')
-rw-r--r--packet-ppp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ppp.c b/packet-ppp.c
index 3f52f9c6cc..8e9494d84a 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.59 2001/03/30 06:10:54 guy Exp $
+ * $Id: packet-ppp.c,v 1.60 2001/03/30 06:15:47 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -678,7 +678,7 @@ fcs32(guint32 fcs,
}
void
-capture_ppp( const u_char *pd, int offset, packet_counts *ld ) {
+capture_ppp_hdlc( const u_char *pd, int offset, packet_counts *ld ) {
if (pd[0] == CHDLC_ADDR_UNICAST || pd[0] == CHDLC_ADDR_MULTICAST) {
capture_chdlc(pd, offset, ld);
return;