summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-11-10 18:50:00 +0100
committerjcid <devnull@localhost>2008-11-10 18:50:00 +0100
commite70b960ae5c27dfbda861dec25f57d5d83a2f64e (patch)
treee694da5ecf1787a1eec4fb58d0d711af38ec3254
parent9a5d37c01b81278b43ea1b510acc93a713f0df6a (diff)
- Fixed the proxy URL parameter for Http_must_use_proxy().
-rw-r--r--ChangeLog2
-rw-r--r--src/IO/http.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6e2e78f2..cd0eb14b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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;