diff options
author | jcid <devnull@localhost> | 2008-11-10 18:50:00 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-11-10 18:50:00 +0100 |
commit | e70b960ae5c27dfbda861dec25f57d5d83a2f64e (patch) | |
tree | e694da5ecf1787a1eec4fb58d0d711af38ec3254 | |
parent | 9a5d37c01b81278b43ea1b510acc93a713f0df6a (diff) |
- Fixed the proxy URL parameter for Http_must_use_proxy().
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/IO/http.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -29,6 +29,8 @@ dillo-2.1 Patch: Justus Winter +- Reduced warnings with gcc-4.3. Patch: Thomas Orgis ++- Fixed the proxy URL parameter for Http_must_use_proxy(). + Patch: David McKee +- Added the "middle_click_drags_page" dillorc option. Patch: Jorge Arellano, Thomas Orgis +- Set the File menu label to hide when the File menu-button is shown. diff --git a/src/IO/http.c b/src/IO/http.c index 692a9520..bcb78b1f 100644 --- a/src/IO/http.c +++ b/src/IO/http.c @@ -459,7 +459,7 @@ static int Http_get(ChainLink *Info, void *Data1) S->Info = Info; /* Proxy support */ - if (Http_must_use_proxy(S->web->url)) { + if (Http_must_use_proxy(URL_HOST(S->web->url))) { hostname = dStrdup(URL_HOST(HTTP_Proxy)); S->port = URL_PORT(HTTP_Proxy); S->use_proxy = TRUE; |