aboutsummaryrefslogtreecommitdiffstats
path: root/packet-eth.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-11-30 23:56:37 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-11-30 23:56:37 +0000
commit3fa90ff0cf66d3743759b5685974de73c1dfd04e (patch)
tree3dc82c8e5623e8a0eb38ef65e8f7c607f1fd05a5 /packet-eth.c
parentada449cf1bfb23e336e2ba5ce848bca48a3ee07d (diff)
Add IPX to packet stats during capture.
svn path=/trunk/; revision=1173
Diffstat (limited to 'packet-eth.c')
-rw-r--r--packet-eth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-eth.c b/packet-eth.c
index 8016337526..78a352be9e 100644
--- a/packet-eth.c
+++ b/packet-eth.c
@@ -1,7 +1,7 @@
/* packet-eth.c
* Routines for ethernet packet disassembly
*
- * $Id: packet-eth.c,v 1.24 1999/11/20 03:27:02 gram Exp $
+ * $Id: packet-eth.c,v 1.25 1999/11/30 23:56:35 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -98,7 +98,7 @@ capture_eth(const u_char *pd, guint32 cap_len, packet_counts *ld) {
switch (ethhdr_type) {
case ETHERNET_802_3:
- ld->other++; /* IPX */
+ capture_ipx(pd, offset, cap_len, ld);
break;
case ETHERNET_802_2:
capture_llc(pd, offset, cap_len, ld);