summaryrefslogtreecommitdiff
path: root/packet-ethertype.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-24 06:03:34 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-24 06:03:34 +0000
commit8a5d5f9bde91019a785a23bab01677cb6eba8739 (patch)
treef9e9ceb8feb9b474fd6f6627ea0f976493553503 /packet-ethertype.c
parentc2b87a5d1e88ad6819175735ee537b5081d23da6 (diff)
downloadwireshark-8a5d5f9bde91019a785a23bab01677cb6eba8739.tar.gz
From Joerg Mayer: get rid of extra arguments to capture routines.
svn path=/trunk/; revision=5233
Diffstat (limited to 'packet-ethertype.c')
-rw-r--r--packet-ethertype.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ethertype.c b/packet-ethertype.c
index c881a960d9..349d942aed 100644
--- a/packet-ethertype.c
+++ b/packet-ethertype.c
@@ -1,7 +1,7 @@
/* ethertype.c
* Routines for calling the right protocol for the ethertype.
*
- * $Id: packet-ethertype.c,v 1.27 2002/03/23 22:02:20 guy Exp $
+ * $Id: packet-ethertype.c,v 1.28 2002/04/24 06:03:33 guy Exp $
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@@ -111,13 +111,13 @@ capture_ethertype(guint16 etype, const u_char *pd, int offset, int len,
capture_ip(pd, offset, len, ld);
break;
case ETHERTYPE_IPX:
- capture_ipx(pd, offset, len, ld);
+ capture_ipx(ld);
break;
case ETHERTYPE_VLAN:
capture_vlan(pd, offset, len, ld);
break;
case ETHERTYPE_VINES:
- capture_vines(pd, offset, len, ld);
+ capture_vines(ld);
break;
default:
ld->other++;