aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2001-03-22 23:22:23 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2001-03-22 23:22:23 +0000
commitc2b31166ed69b75a2a3eb535ccfe8700556bbb79 (patch)
tree9ae3179bd4fc3c6a99a7f26bda5f28c8e4b38a02
parenta8b0c240e6a57e9bb3e696d871c02420b7594b01 (diff)
Show "IEEE 802.3" as "IEEE 802.3 Ethernet" so as not to confuse
anyone. svn path=/trunk/; revision=3161
-rw-r--r--packet-eth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-eth.c b/packet-eth.c
index 61fa7b9c65..17cb86bbe2 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.61 2001/03/13 21:34:23 gram Exp $
+ * $Id: packet-eth.c,v 1.62 2001/03/22 23:22:23 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -207,12 +207,12 @@ dissect_eth(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
ENDTRY;
if (check_col(pinfo->fd, COL_INFO)) {
- col_add_fstr(pinfo->fd, COL_INFO, "IEEE 802.3 %s",
+ col_add_fstr(pinfo->fd, COL_INFO, "IEEE 802.3 Ethernet %s",
(is_802_2 ? "" : "Raw "));
}
if (tree) {
ti = proto_tree_add_protocol_format(tree, proto_eth, tvb, 0, ETH_HEADER_SIZE,
- "IEEE 802.3 %s", (is_802_2 ? "" : "Raw "));
+ "IEEE 802.3 Ethernet %s", (is_802_2 ? "" : "Raw "));
fh_tree = proto_item_add_subtree(ti, ett_ieee8023);