aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-05-26 01:32:00 +0000
committerGuy Harris <guy@alum.mit.edu>2010-05-26 01:32:00 +0000
commitd3f8320039ccae088d6dddc25010342911f13fb8 (patch)
treeb24617be4483754534005b682637e483f03d93fe /tshark.c
parent7a630c61a1ad5e3cb7f6895256e568ca5a292645 (diff)
Fix build without pcap.
svn path=/trunk/; revision=32959
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tshark.c b/tshark.c
index 329423d4cd..b51b98b9cb 100644
--- a/tshark.c
+++ b/tshark.c
@@ -1337,7 +1337,7 @@ main(int argc, char *argv[])
#else
/* We're not saving the capture to a file; if "-q" wasn't specified,
we should print packet information */
- if (!quiet)
+ if (!global_capture_opts.quiet)
print_packet_info = TRUE;
#endif