aboutsummaryrefslogtreecommitdiffstats
path: root/tools/win-setup.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-02-15 22:48:51 +0000
committerGuy Harris <guy@alum.mit.edu>2010-02-15 22:48:51 +0000
commite5fc4b7b4c0e7962ed0e8818cc92c9b5e5aa9cb1 (patch)
treeeb8ce32ed735a1e4054f7a61e26ebe7d123cd395 /tools/win-setup.sh
parent2a5b73320716c1c972e20aebba627c43e283edbf (diff)
Add a debugging printout. (What I found in the Intertubes seems to
indicate that ProxyEnabled is an integral value; if it's not a null string, and if it's not an integral value, what is it?) svn path=/trunk/; revision=31887
Diffstat (limited to 'tools/win-setup.sh')
-rwxr-xr-xtools/win-setup.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/win-setup.sh b/tools/win-setup.sh
index 3835e5b695..fae0bf6336 100755
--- a/tools/win-setup.sh
+++ b/tools/win-setup.sh
@@ -55,6 +55,7 @@ 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"
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."