diff options
author | Guy Harris <guy@alum.mit.edu> | 2010-05-17 23:56:00 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2010-05-17 23:56:00 +0000 |
commit | 14c40a21aa2f852623b45af06ee1b4c8f6f3e047 (patch) | |
tree | f99dc55a9cbb5b539c475acb2c1c4bed84433a1c /capture_sync.c | |
parent | 859c6e4d3ee7d483f74f338c563f9ab9ee9a10e1 (diff) | |
download | wireshark-14c40a21aa2f852623b45af06ee1b4c8f6f3e047.tar.gz wireshark-14c40a21aa2f852623b45af06ee1b4c8f6f3e047.tar.bz2 wireshark-14c40a21aa2f852623b45af06ee1b4c8f6f3e047.zip |
Make -Z always generate machine-readable output, and don't bother
supplying -M along with -Z. (We keep -M around for debugging use; it's
documented, unlike -Z.)
svn path=/trunk/; revision=32850
Diffstat (limited to 'capture_sync.c')
-rw-r--r-- | capture_sync.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/capture_sync.c b/capture_sync.c index 4665473630..df9d85deea 100644 --- a/capture_sync.c +++ b/capture_sync.c @@ -1007,7 +1007,6 @@ sync_interface_list_open(gchar **data, gchar **primary_msg, /* Ask for the interface list */ argv = sync_pipe_add_arg(argv, &argc, "-D"); - argv = sync_pipe_add_arg(argv, &argc, "-M"); #ifndef DEBUG_CHILD /* Run dumpcap in capture child mode */ @@ -1054,7 +1053,6 @@ sync_if_capabilities_open(const gchar *ifname, gboolean monitor_mode, argv = sync_pipe_add_arg(argv, &argc, "-L"); if (monitor_mode) argv = sync_pipe_add_arg(argv, &argc, "-I"); - argv = sync_pipe_add_arg(argv, &argc, "-M"); #ifndef DEBUG_CHILD /* Run dumpcap in capture child mode */ @@ -1095,7 +1093,6 @@ sync_interface_stats_open(int *data_read_fd, int *fork_child, gchar **msg) /* Ask for the interface statistics */ argv = sync_pipe_add_arg(argv, &argc, "-S"); - argv = sync_pipe_add_arg(argv, &argc, "-M"); #ifndef DEBUG_CHILD argv = sync_pipe_add_arg(argv, &argc, "-Z"); |