Diff
Not logged in

Differences From:

File src/url.c part of check-in [ec82a32b80] - Add the -nosync option to the "open" command. We might consider making -nosync the default for "open". by drh on 2008-05-10 18:19:03. [view]

To:

File src/url.c part of check-in [d8bf311336] - Fix an issue that sets proxy = getenv(http_proxy) even when global proxy option is disabled by altufaltu on 2008-10-25 14:29:44. [view]

@@ -161,9 +161,9 @@
   const char *zProxy;
   zProxy = zProxyOpt;
   if( zProxy==0 ){
     zProxy = db_get("proxy", 0);
-    if( zProxy==0 || zProxy[0] || is_false(zProxy) ){
+    if( zProxy==0 || zProxy[0] || !is_false(zProxy) ){
       zProxy = getenv("http_proxy");
     }
   }
   if( zProxy && zProxy[0] && !is_false(zProxy) ){