aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-08-01 19:52:36 +0000
committerJörg Mayer <jmayer@loplof.de>2006-08-01 19:52:36 +0000
commit30c04916b4abb7eecbdd1b03ec4d2109a8a8e3bf (patch)
treea05f00f8e6ba73d9af618bacbb2433bade0fc049 /tshark.c
parent30fac686ac0fbfbd04f56c1243955fcc0b40a986 (diff)
Reported by Stephen Fisher <stephentfisher@yahoo.com>:
I believe this is a typo in the command line help for the -i option: Usage: wireshark [options] ... [ <infile> ] Capture interface: -i <interface> name or idx of interface (def: first none loopback) Shouldn't that read "first non-loopback" ? svn path=/trunk/; revision=18813
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 f904ee3b54..964b4662dd 100644
--- a/tshark.c
+++ b/tshark.c
@@ -231,7 +231,7 @@ print_usage(gboolean print_ver)
#ifdef HAVE_LIBPCAP
fprintf(output, "Capture interface:\n");
- fprintf(output, " -i <interface> name or idx of interface (def: first none loopback)\n");
+ fprintf(output, " -i <interface> name or idx of interface (def: first non-loopback)\n");
fprintf(output, " -f <capture filter> packet filter in libpcap filter syntax\n");
fprintf(output, " -s <snaplen> packet snapshot length (def: 65535)\n");
fprintf(output, " -p don't capture in promiscuous mode\n");