diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-09-10 22:23:58 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-09-10 22:23:58 +0000 |
commit | 3e1a53241351c35b52450c2a98c7f7a222f8d653 (patch) | |
tree | 1ed8d38556a272ae4d44b7cba817b907fc2a5aa3 /tethereal.c | |
parent | 7704cdd1490ee9017ac78c03ca9728abdd2c20f9 (diff) | |
download | wireshark-3e1a53241351c35b52450c2a98c7f7a222f8d653.tar.gz wireshark-3e1a53241351c35b52450c2a98c7f7a222f8d653.tar.bz2 wireshark-3e1a53241351c35b52450c2a98c7f7a222f8d653.zip |
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.c | 4 |
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 |