diff options
author | Guy Harris <guy@alum.mit.edu> | 1998-11-05 10:23:27 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1998-11-05 10:23:27 +0000 |
commit | 2a79ef840ce00d16bc9da6fc8a609cdc0e29ff24 (patch) | |
tree | 5b3a081b57b63970cf65964924f081fcead025b7 /packet-raw.c | |
parent | 24f375d9285e613ae367a517203d4b3444557adb (diff) | |
download | wireshark-2a79ef840ce00d16bc9da6fc8a609cdc0e29ff24.tar.gz wireshark-2a79ef840ce00d16bc9da6fc8a609cdc0e29ff24.tar.bz2 wireshark-2a79ef840ce00d16bc9da6fc8a609cdc0e29ff24.zip |
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-raw.c')
-rw-r--r-- | packet-raw.c | 5 |
1 files changed, 2 insertions, 3 deletions
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"); |