aboutsummaryrefslogtreecommitdiffstats
path: root/tethereal.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-10 22:23:58 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-10 22:23:58 +0000
commit3e1a53241351c35b52450c2a98c7f7a222f8d653 (patch)
tree1ed8d38556a272ae4d44b7cba817b907fc2a5aa3 /tethereal.c
parent7704cdd1490ee9017ac78c03ca9728abdd2c20f9 (diff)
When saving packets, we have a "Save only marked packets" option; label
the option to print only marked packets similarly, rather than as "Suppress unmarked packets" (for consistency, and because the latter isn't unlike a double negative). svn path=/trunk/; revision=8451
Diffstat (limited to 'tethereal.c')
-rw-r--r--tethereal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tethereal.c b/tethereal.c
index 3e14a584bc..3ca726f1cc 100644
--- a/tethereal.c
+++ b/tethereal.c
@@ -1,6 +1,6 @@
/* tethereal.c
*
- * $Id: tethereal.c,v 1.195 2003/09/10 05:35:24 guy Exp $
+ * $Id: tethereal.c,v 1.196 2003/09/10 22:23:58 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2350,7 +2350,7 @@ wtap_dispatch_cb_print(guchar *user, const struct wtap_pkthdr *phdr,
print_args.print_summary = FALSE;
print_args.print_hex = print_hex;
print_args.expand_all = TRUE;
- print_args.suppress_unmarked = FALSE;
+ print_args.print_only_marked = FALSE;
proto_tree_print(&print_args, edt, stdout);
if (!print_hex) {
/* "print_hex_data()" will put out a leading blank line, as well