diff options
author | Gerald Combs <gerald@wireshark.org> | 2007-07-20 21:43:07 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2007-07-20 21:43:07 +0000 |
commit | c02e0c7b4a2f23916f6bdda16bd124e3a2b83419 (patch) | |
tree | a705612afd4276c7aa9f43738667b6b8a7da2520 /tshark.c | |
parent | c1a4caf1b24b7ce38434f8963b3590013912697b (diff) | |
download | wireshark-c02e0c7b4a2f23916f6bdda16bd124e3a2b83419.tar.gz wireshark-c02e0c7b4a2f23916f6bdda16bd124e3a2b83419.tar.bz2 wireshark-c02e0c7b4a2f23916f6bdda16bd124e3a2b83419.zip |
Remove the "-I" flag from dumpcap, and add a "-M" flag used to specify
that "-D" and "-L" should produce machine-readable output. Use this to
move an indirect get_pcap_linktype() call from the GUI to dumpcap.
svn path=/trunk/; revision=22367
Diffstat (limited to 'tshark.c')
-rw-r--r-- | tshark.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1523,7 +1523,7 @@ main(int argc, char *argv[]) /* if requested, list the link layer types and exit */ if (list_link_layer_types) { - status = capture_opts_list_link_layer_types(&capture_opts); + status = capture_opts_list_link_layer_types(&capture_opts, FALSE); exit(status); } |