aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-02-16 00:00:50 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-02-16 00:00:50 +0000
commitd85560e36042a62f02b662d2d0da9d4b11564135 (patch)
tree04cdff27166f0998153c1d03973322bd8448c24d /tools
parent79531bed360509decaf407c51048370339d8f767 (diff)
More debug crap.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31892 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools')
-rwxr-xr-xtools/win-setup.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/win-setup.sh b/tools/win-setup.sh
index af241da2f0..788960af2f 100755
--- a/tools/win-setup.sh
+++ b/tools/win-setup.sh
@@ -60,8 +60,11 @@ find_proxy() {
# Strip out newlines so that doesn't happen.
#
proxy_enabled=`regtool get /HKCU/Software/Microsoft/Windows/CurrentVersion/Internet\ Settings/ProxyEnable 2>/dev/null | tr -d '\012'`
-echo "proxy_enabled is:"
+if [ -n "$proxy_enabled ] ; then
+echo "proxy_enabled is $proxy_enabled"
+echo "In raw bytes, that's:"
echo -n "$proxy_enabled" | od -bc
+fi
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."