aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-12 17:49:15 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-12 17:49:15 +0000
commit97d13e07edfbe44e641f937dcdbc1ff32cef89bd (patch)
tree7ef5bcc79f2aeb0913c88fbe7c742f92bb71ccd4 /test
parent1a9467824373d16f6e691c275a67d69949bc23b4 (diff)
"tshark -D" writes to stderr now.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37092 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'test')
-rwxr-xr-xtest/config.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/config.sh b/test/config.sh
index b12588a35e..b6aa59acd8 100755
--- a/test/config.sh
+++ b/test/config.sh
@@ -55,7 +55,7 @@ DUMPCAP=$WS_BIN_PATH/dumpcap
# an interfaces index (1 based) should do well for recent devbuilds
if [ "$WS_SYSTEM" = "Windows" -a -z "$TRAFFIC_CAPTURE_IFACE" ] ; then
# Try to fetch the first Ethernet interface.
- TRAFFIC_CAPTURE_IFACE=`$TSHARK -D | \
+ TRAFFIC_CAPTURE_IFACE=`$TSHARK -D 2>&1 | \
egrep 'Ethernet|Network Connection|VMware' | \
head -1 | cut -c 1`
fi