diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-08-26 19:09:02 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-08-26 19:09:02 +0000 |
commit | 7a12fa137326ec66c2446096524d7475328df04c (patch) | |
tree | f94d6b4778f6d413083a5502e0cb0cd802e5e3d5 /packet-frame.c | |
parent | 06573c83ef87a1793152f20c6e53aef6a356b7c1 (diff) | |
download | wireshark-7a12fa137326ec66c2446096524d7475328df04c.tar.gz wireshark-7a12fa137326ec66c2446096524d7475328df04c.tar.bz2 wireshark-7a12fa137326ec66c2446096524d7475328df04c.zip |
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.
svn path=/trunk/; revision=6090
Diffstat (limited to 'packet-frame.c')
-rw-r--r-- | packet-frame.c | 4 |
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); |