aboutsummaryrefslogtreecommitdiffstats
path: root/capture_sync.c
diff options
context:
space:
mode:
authorMichael Tüxen <tuexen@fh-muenster.de>2011-06-27 19:07:36 +0000
committerMichael Tüxen <tuexen@fh-muenster.de>2011-06-27 19:07:36 +0000
commitdf70b4c15cc10b86c06372b8fef7b46c38d31286 (patch)
tree9eb1ae0d32d89ab838a6f808eb2eaba936a95943 /capture_sync.c
parent710c5d67f7c7c4347aba0f8dd802d87850c88b33 (diff)
Fix the bug reported by Guy. Now
tshark -i en0 icmpp returns a correct error message. svn path=/trunk/; revision=37806
Diffstat (limited to 'capture_sync.c')
-rw-r--r--capture_sync.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/capture_sync.c b/capture_sync.c
index 310c917994..addb714b7b 100644
--- a/capture_sync.c
+++ b/capture_sync.c
@@ -438,12 +438,6 @@ sync_pipe_start(capture_options *capture_opts) {
argv = sync_pipe_add_arg(argv, &argc, "-f");
argv = sync_pipe_add_arg(argv, &argc, interface_opts.cfilter);
}
- if (interface_opts.cfilter == NULL &&
- capture_opts->default_options.cfilter != NULL &&
- strlen(capture_opts->default_options.cfilter) != 0) {
- argv = sync_pipe_add_arg(argv, &argc, "-f");
- argv = sync_pipe_add_arg(argv, &argc, capture_opts->default_options.cfilter);
- }
if (interface_opts.snaplen != WTAP_MAX_PACKET_SIZE) {
argv = sync_pipe_add_arg(argv, &argc, "-s");
g_snprintf(ssnap, ARGV_NUMBER_LEN, "%d", interface_opts.snaplen);