diff options
author | jcid <devnull@localhost> | 2008-11-11 15:15:58 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-11-11 15:15:58 +0100 |
commit | 41fcd4d8148404ebcad1ed19f11858a4b502148e (patch) | |
tree | c9c103011554fdfd43673ffdabc36bf879baefa9 /src | |
parent | 09835eb26ffd2df0a3b9988f3d8b3f82ef0a4226 (diff) |
- Allowed the rc parser to skip whitespace around the equal sign.
Diffstat (limited to 'src')
-rw-r--r-- | src/IO/http.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/IO/http.c b/src/IO/http.c index bcb78b1f..2c50e829 100644 --- a/src/IO/http.c +++ b/src/IO/http.c @@ -398,6 +398,7 @@ static int Http_must_use_proxy(const DilloUrl *url) dFree(np); } } + _MSG("Http_must_use_proxy: %s\n %s\n", URL_STR(url), ret ? "YES":"NO"); return ret; } @@ -459,7 +460,7 @@ static int Http_get(ChainLink *Info, void *Data1) S->Info = Info; /* Proxy support */ - if (Http_must_use_proxy(URL_HOST(S->web->url))) { + if (Http_must_use_proxy(S->web->url)) { hostname = dStrdup(URL_HOST(HTTP_Proxy)); S->port = URL_PORT(HTTP_Proxy); S->use_proxy = TRUE; |