commit 197256469ebf2b4e5a40cb7a6176937bf99a7ed1
parent 9550230cf53ae567ea8335b7ff252fc53b49e3e0
Author: ukai <ukai>
Date: Wed, 27 Feb 2002 16:53:27 +0000
[w3m-dev 03070] Re: https through proxy
* url.c (openURL): pass extra_header (Proxy-Authorization:)
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2002-02-28 Fumitoshi UKAI <ukai@debian.or.jp>
+
+ * [w3m-dev 03070] Re: https through proxy
+ * url.c (openURL): pass extra_header (Proxy-Authorization:)
+
2002-02-26 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 03067] Re: https through proxy
diff --git a/url.c b/url.c
@@ -1577,7 +1577,7 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current,
if (pu->scheme == SCM_HTTPS) {
if (*status == HTST_NORMAL) {
hr->command = HR_COMMAND_CONNECT;
- tmp = HTTPrequest(pu, current, hr, NULL);
+ tmp = HTTPrequest(pu, current, hr, extra_header);
*status = HTST_CONNECT;
}
else {