aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-02-15 23:05:04 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-02-15 23:05:04 +0000
commitb5bcb2a744ebe0fe112b478e110d154e877e754c (patch)
tree2701b4766b6f0fabc2233d91715875be0aef66f7 /tools
parent76b71a8a6008cf900a2ae63e02ff58c181dddd9a (diff)
Eh? It looks blank, but "-n" should catch that. Hopefully we have "od"
and that'll let us see the raw bytes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31888 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools')
-rwxr-xr-xtools/win-setup.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/win-setup.sh b/tools/win-setup.sh
index fae0bf6336..286735cb30 100755
--- a/tools/win-setup.sh
+++ b/tools/win-setup.sh
@@ -55,7 +55,8 @@ find_proxy() {
# ...and wget can't fetch two registry keys because...?
proxy_enabled=`regtool get /HKCU/Software/Microsoft/Windows/CurrentVersion/Internet\ Settings/ProxyEnable 2>/dev/null`
-echo "proxy_enabled is $proxy_enabled"
+echo "proxy_enabled is:"
+echo "$proxy_enabled" | od -bc
if [ -n "$proxy_enabled" -a "$proxy_enabled" -ne 0 ] ; then
export http_proxy=`regtool get /HKCU/Software/Microsoft/Windows/CurrentVersion/Internet\ Settings/ProxyServer 2>/dev/null`
echo "Using Internet Explorer proxy settings."