More debugging - stripping out the newlines didn't suffice.

svn path=/trunk/; revision=31891
This commit is contained in:
Guy Harris 2010-02-15 23:47:05 +00:00
parent 2b2879b098
commit 0023958937
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,8 @@ 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:"
echo -n "$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."