aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--packet-null.c5
-rw-r--r--packet-raw.c5
2 files changed, 4 insertions, 6 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);
diff --git a/packet-raw.c b/packet-raw.c
index be745c0237..656c3cc8f4 100644
--- a/packet-raw.c
+++ b/packet-raw.c
@@ -1,7 +1,7 @@
/* packet-raw.c
* Routines for raw packet disassembly
*
- * $Id: packet-raw.c,v 1.4 1998/10/10 03:32:15 gerald Exp $
+ * $Id: packet-raw.c,v 1.5 1998/11/05 10:23:26 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -55,8 +55,7 @@ dissect_raw( const u_char *pd, frame_data *fd, GtkTree *tree ) {
layer (ie none) */
if(tree) {
ti = add_item_to_tree( GTK_WIDGET(tree), 0, 0,
- "Raw packet data (%d on link, %d captured)",
- fd->pkt_len, fd->cap_len );
+ "Raw packet data" );
fh_tree = gtk_tree_new();
add_subtree(ti, fh_tree, ETT_RAW);
add_item_to_tree(fh_tree, 0, 0, "No link information available");