aboutsummaryrefslogtreecommitdiffstats
path: root/packet-frame.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-26 19:09:02 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-26 19:09:02 +0000
commit10cf7a61d6833063acfd1155a4d8fbda17e3af34 (patch)
treef94d6b4778f6d413083a5502e0cb0cd802e5e3d5 /packet-frame.c
parentdb79c41a1337c4f062e7cc0cd35f1d7190848dd3 (diff)
From Ulf Lamping:
Put "bytes" after the byte counts for the frame sizes in the top-level item for the "Frame" protocol, to make it clearer what they refer to. Put the source and destination MAC addresses into the top-level item for Ethernet. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6090 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-frame.c')
-rw-r--r--packet-frame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-frame.c b/packet-frame.c
index cd7f58c44d..79c96522d2 100644
--- a/packet-frame.c
+++ b/packet-frame.c
@@ -2,7 +2,7 @@
*
* Top-most dissector. Decides dissector based on Wiretap Encapsulation Type.
*
- * $Id: packet-frame.c,v 1.28 2002/08/06 08:13:42 guy Exp $
+ * $Id: packet-frame.c,v 1.29 2002/08/26 19:09:00 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -116,7 +116,7 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
pkt_len = tvb_reported_length(tvb);
ti = proto_tree_add_protocol_format(tree, proto_frame, tvb, 0, -1,
- "Frame %u (%u on wire, %u captured)", pinfo->fd->num, pkt_len, cap_len);
+ "Frame %u (%u bytes on wire, %u bytes captured)", pinfo->fd->num, pkt_len, cap_len);
fh_tree = proto_item_add_subtree(ti, ett_frame);