aboutsummaryrefslogtreecommitdiffstats
path: root/packet-null.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1998-11-05 10:23:27 +0000
committerGuy Harris <guy@alum.mit.edu>1998-11-05 10:23:27 +0000
commit2a79ef840ce00d16bc9da6fc8a609cdc0e29ff24 (patch)
tree5b3a081b57b63970cf65964924f081fcead025b7 /packet-null.c
parent24f375d9285e613ae367a517203d4b3444557adb (diff)
Get rid of the "N on link, M capture" from the null and raw detail, as
that's now in the frame-level detail display. svn path=/trunk/; revision=80
Diffstat (limited to 'packet-null.c')
-rw-r--r--packet-null.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/packet-null.c b/packet-null.c
index 574becfec8..38170cc2a6 100644
--- a/packet-null.c
+++ b/packet-null.c
@@ -1,7 +1,7 @@
/* packet-null.c
* Routines for null packet disassembly
*
- * $Id: packet-null.c,v 1.2 1998/09/27 22:12:33 gerald Exp $
+ * $Id: packet-null.c,v 1.3 1998/11/05 10:23:27 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -62,8 +62,7 @@ dissect_null( const u_char *pd, frame_data *fd, GtkTree *tree ) {
layer (ie none) */
if(tree) {
ti = add_item_to_tree( GTK_WIDGET(tree), 0, 4,
- "Null/Loopback (%d on link, %d captured)", fd->pkt_len,
- fd->cap_len );
+ "Null/Loopback" );
fh_tree = gtk_tree_new();
add_subtree(ti, fh_tree, ETT_NULL);
add_item_to_tree(fh_tree, 0, 1, "Next: %02x", nh.null_next);