aboutsummaryrefslogtreecommitdiffstats
path: root/url.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-02-27 16:53:27 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-02-27 16:53:27 +0000
commitb6e7d6aa35ea8b8f4156c11f17253038efdb2eb7 (patch)
treec21813f615f841f5d4412700b47fba33d5977a0a /url.c
parent[w3m-dev 03067] Re: https through proxy (diff)
downloadw3m-b6e7d6aa35ea8b8f4156c11f17253038efdb2eb7.tar.gz
w3m-b6e7d6aa35ea8b8f4156c11f17253038efdb2eb7.zip
[w3m-dev 03070] Re: https through proxy
* url.c (openURL): pass extra_header (Proxy-Authorization:) From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r--url.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/url.c b/url.c
index 9f659db..2b4aae8 100644
--- a/url.c
+++ b/url.c
@@ -1,4 +1,4 @@
-/* $Id: url.c,v 1.44 2002/02/19 15:50:18 ukai Exp $ */
+/* $Id: url.c,v 1.45 2002/02/27 16:53:27 ukai Exp $ */
#include <stdio.h>
#include "config.h"
#include "fm.h"
@@ -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 {