summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-02-15 23:05:04 +0000
committerGuy Harris <guy@alum.mit.edu>2010-02-15 23:05:04 +0000
commitf3e871e6599f1fa94dfb04a31ceb02326a4cb235 (patch)
tree2701b4766b6f0fabc2233d91715875be0aef66f7 /tools
parente5fc4b7b4c0e7962ed0e8818cc92c9b5e5aa9cb1 (diff)
downloadwireshark-f3e871e6599f1fa94dfb04a31ceb02326a4cb235.tar.gz
Eh? It looks blank, but "-n" should catch that. Hopefully we have "od"
and that'll let us see the raw bytes. svn path=/trunk/; revision=31888
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."