aboutsummaryrefslogtreecommitdiffstats
path: root/packet-gre.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-03-27 17:53:20 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-03-27 17:53:20 +0000
commit1b25952ad459c5627093eca11853d487fbdcae4a (patch)
tree9371bbe2c77c4c66baa93ef20e334ad6c33e9b1b /packet-gre.c
parent1d640c1296eeb182ea2d23efb93cd034b07b76ac (diff)
Change dissect_ppp() to accept offset.
Change GRE dissector to call dissect_ppp() instead of dissect_payload_ppp(). svn path=/trunk/; revision=1753
Diffstat (limited to 'packet-gre.c')
-rw-r--r--packet-gre.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-gre.c b/packet-gre.c
index cbd9d7ae8f..dbe20248c6 100644
--- a/packet-gre.c
+++ b/packet-gre.c
@@ -2,7 +2,7 @@
* Routines for the Generic Routing Encapsulation (GRE) protocol
* Brad Robel-Forrest <brad.robel-forrest@watchguard.com>
*
- * $Id: packet-gre.c,v 1.16 2000/03/12 04:47:38 gram Exp $
+ * $Id: packet-gre.c,v 1.17 2000/03/27 17:53:19 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -202,7 +202,7 @@ dissect_gre(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
switch (type) {
case GRE_PPP:
- dissect_payload_ppp(pd, offset, fd, tree);
+ dissect_ppp(pd, offset, fd, tree);
break;
case GRE_IP:
dissect_ip(pd, offset, fd, tree);