aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorMichael Tüxen <tuexen@fh-muenster.de>2011-05-13 11:28:51 +0000
committerMichael Tüxen <tuexen@fh-muenster.de>2011-05-13 11:28:51 +0000
commitcfe3d2d0dae32c211df261fa3165e2b9b1df9816 (patch)
treec1e4bcf96d3e8c61f4cee05ae7b9cfd8695ec28a /tshark.c
parenta7c5d642d5e123b34143cf4ad623c7ced230f831 (diff)
Get -L and -d working with multiple interface. Internally get some functions
using the array of interface data. Improve output of -L by printing the interface name. svn path=/trunk/; revision=37120
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 38964e75d8..001ad9fb30 100644
--- a/tshark.c
+++ b/tshark.c
@@ -1780,7 +1780,7 @@ main(int argc, char *argv[])
cmdarg_err("The capture device \"%s\" has no data link types.", global_capture_opts.iface);
return 2;
}
- capture_opts_print_if_capabilities(caps,
+ capture_opts_print_if_capabilities(caps, global_capture_opts.iface,
global_capture_opts.monitor_mode);
free_if_capabilities(caps);
return 0;