From 1b25952ad459c5627093eca11853d487fbdcae4a Mon Sep 17 00:00:00 2001 From: Gilbert Ramirez Date: Mon, 27 Mar 2000 17:53:20 +0000 Subject: Change dissect_ppp() to accept offset. Change GRE dissector to call dissect_ppp() instead of dissect_payload_ppp(). svn path=/trunk/; revision=1753 --- packet-gre.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packet-gre.c') 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 * - * $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 @@ -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); -- cgit v1.2.3