aboutsummaryrefslogtreecommitdiffstats
path: root/packet-fddi.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1998-10-13 05:55:45 +0000
committerGuy Harris <guy@alum.mit.edu>1998-10-13 05:55:45 +0000
commitd9850d803f8a4c155bd919f5ca7a991bd8e0e8c9 (patch)
tree61c24763c1c20b0ea22b3130e95a1ad1f199056f /packet-fddi.c
parent7f2da15d6bb2b3828db092a5f22f4f958524edda (diff)
Remove the length-on-wire and length-captured values from the FDDI
detail display; that's now in the "frame" detail display. svn path=/trunk/; revision=46
Diffstat (limited to 'packet-fddi.c')
-rw-r--r--packet-fddi.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/packet-fddi.c b/packet-fddi.c
index 5e5174f15d..45f3256b1e 100644
--- a/packet-fddi.c
+++ b/packet-fddi.c
@@ -3,7 +3,7 @@
*
* Laurent Deniel <deniel@worldnet.fr>
*
- * $Id: packet-fddi.c,v 1.3 1998/10/13 05:12:13 guy Exp $
+ * $Id: packet-fddi.c,v 1.4 1998/10/13 05:55:45 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -95,10 +95,9 @@ void dissect_fddi(const u_char *pd, frame_data *fd, GtkTree *tree)
if (tree) {
ti = add_item_to_tree(GTK_WIDGET(tree), 0, offset,
- "FDDI %s (%d on wire, %d captured)",
+ "FDDI %s",
(fc >= FDDI_FC_LLC_ASYNC_MIN && fc <= FDDI_FC_LLC_ASYNC_MAX) ?
- "Async LLC" : "unsupported FC",
- fd->pkt_len, fd->cap_len);
+ "Async LLC" : "unsupported FC");
fh_tree = gtk_tree_new();
add_subtree(ti, fh_tree, ETT_FDDI);