aboutsummaryrefslogtreecommitdiffstats
path: root/url.c
diff options
context:
space:
mode:
authorIto Hiroyuki <ZXB01226@nifty.com>2010-08-03 10:02:16 +0000
committerIto Hiroyuki <ZXB01226@nifty.com>2010-08-03 10:02:16 +0000
commit49883bb9cb1d66d377982f092174846e29697313 (patch)
tree13a641230f3e2d001edfc87eb002a5ce48ffdab1 /url.c
parentRevert the change of using ATTR_TITLE if ATTR_ALT is empty. (diff)
downloadw3m-49883bb9cb1d66d377982f092174846e29697313.tar.gz
w3m-49883bb9cb1d66d377982f092174846e29697313.zip
* register user name and password for proxy authentication.
* remove option -pauth
Diffstat (limited to 'url.c')
-rw-r--r--url.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/url.c b/url.c
index e6bf576..1973795 100644
--- a/url.c
+++ b/url.c
@@ -1,4 +1,4 @@
-/* $Id: url.c,v 1.97 2010/07/20 00:09:34 htrb Exp $ */
+/* $Id: url.c,v 1.98 2010/08/03 10:02:16 htrb Exp $ */
#include "fm.h"
#ifndef __MINGW32_VERSION
#include <sys/types.h>
@@ -1379,7 +1379,6 @@ HTTPrequest(ParsedURL *pu, ParsedURL *current, HRequest *hr, TextList *extra)
Str tmp;
TextListItem *i;
int seen_www_auth = 0;
- int seen_proxy_auth = 0;
#ifdef USE_COOKIE
Str cookie;
#endif /* USE_COOKIE */
@@ -1403,7 +1402,6 @@ HTTPrequest(ParsedURL *pu, ParsedURL *current, HRequest *hr, TextList *extra)
}
if (strncasecmp(i->ptr, "Proxy-Authorization:",
sizeof("Proxy-Authorization:") - 1) == 0) {
- seen_proxy_auth = 1;
#ifdef USE_SSL
if (pu->scheme == SCM_HTTPS
&& hr->command != HR_COMMAND_CONNECT)