aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authortuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-13 11:28:51 +0000
committertuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-13 11:28:51 +0000
commitef23ba7a2e7d95a96ad766d1cf6d9924afec90bc (patch)
treec1e4bcf96d3e8c61f4cee05ae7b9cfd8695ec28a /tshark.c
parent14262ca1747b6aa6045dd77ac0a3bd5d251d4f4e (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37120 f5534014-38df-0310-8fa8-9805f1628bb7
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;