Eh? It looks blank, but "-n" should catch that. Hopefully we have "od"
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 15 Feb 2010 23:05:04 +0000 (23:05 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 15 Feb 2010 23:05:04 +0000 (23:05 +0000)
and that'll let us see the raw bytes.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31888 f5534014-38df-0310-8fa8-9805f1628bb7

tools/win-setup.sh

index fae0bf6336acbd679ebe38d409ff34d513a11e36..286735cb30b27ed531cfcb18c48527978e74dd3f 100755 (executable)
@@ -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."