aboutsummaryrefslogtreecommitdiffstats
path: root/packet-pppoe.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-05-01 07:54:08 +0000
committerGuy Harris <guy@alum.mit.edu>2002-05-01 07:54:08 +0000
commit0c7c4c6dfccaafab8414e4e56c057b67e45f60d6 (patch)
tree032d6fa8228bc3eb20ad73c797503a4bac557d6b /packet-pppoe.c
parent28703b869896499d1f59805f37319d2fc21d0412 (diff)
From Joerg Mayer: get rid of unused arguments.
svn path=/trunk/; revision=5330
Diffstat (limited to 'packet-pppoe.c')
-rw-r--r--packet-pppoe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-pppoe.c b/packet-pppoe.c
index 8398195d54..3e69fc3bd0 100644
--- a/packet-pppoe.c
+++ b/packet-pppoe.c
@@ -1,7 +1,7 @@
/* packet-pppoe.c
* Routines for PPP Over Ethernet (PPPoE) packet disassembly (RFC2516)
*
- * $Id: packet-pppoe.c,v 1.21 2002/01/21 07:36:38 guy Exp $
+ * $Id: packet-pppoe.c,v 1.22 2002/05/01 07:54:08 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -98,7 +98,7 @@ pppoetag_to_str(guint16 tag_type, const char *fmt) {
static void
-dissect_pppoe_tags(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, int payload_length) {
+dissect_pppoe_tags(tvbuff_t *tvb, int offset, proto_tree *tree, int payload_length) {
guint16 poe_tag;
guint16 poe_tag_length;
@@ -197,7 +197,7 @@ dissect_pppoed(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) {
proto_tree_add_text(pppoe_tree, tvb,4,2,
"Payload Length: %u", pppoe_length);
}
- dissect_pppoe_tags(tvb,6,pinfo,tree,6+pppoe_length);
+ dissect_pppoe_tags(tvb,6,tree,6+pppoe_length);
}
void