diff options
-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; |