w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

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:
MChangeLog | 5+++++
Murl.c | 2+-
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 {