diff options
author | Guy Harris <guy@alum.mit.edu> | 2010-05-07 00:16:52 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2010-05-07 00:16:52 +0000 |
commit | 96f67d95178625dec971ab5ca16d24a0a4e8cb5f (patch) | |
tree | 8d1f189114cd95ba3f2cda71e150c9af5b8eb619 /tshark.c | |
parent | a3048aed2d8f02a91cfdaf98b12a7cc73bef8c07 (diff) | |
download | wireshark-96f67d95178625dec971ab5ca16d24a0a4e8cb5f.tar.gz wireshark-96f67d95178625dec971ab5ca16d24a0a4e8cb5f.tar.bz2 wireshark-96f67d95178625dec971ab5ca16d24a0a4e8cb5f.zip |
Now that we support -B on various UN*X platforms as well as Windows, we
can no longer state what the default is (it's platform-dependent).
svn path=/trunk/; revision=32700
Diffstat (limited to 'tshark.c')
-rw-r--r-- | tshark.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -233,7 +233,7 @@ print_usage(gboolean print_ver) fprintf(output, " -s <snaplen> packet snapshot length (def: 65535)\n"); fprintf(output, " -p don't capture in promiscuous mode\n"); #if defined(_WIN32) || defined(HAVE_PCAP_CREATE) - fprintf(output, " -B <buffer size> size of kernel buffer (def: 1MB)\n"); + fprintf(output, " -B <buffer size> size of kernel buffer\n"); #endif fprintf(output, " -y <link type> link layer type (def: first appropriate)\n"); fprintf(output, " -D print list of interfaces and exit\n"); |