[w3m-dev 03994] Digest auth problem
Fumitoshi UKAI <[email protected]>
| Newsgroups | gmane.comp.web.w3m.devel |
|---|---|
| Organization | Debian JP Project |
| Message-ID | <[email protected]> |
Digest
tDiary
/foo.cgi?bar=baz
<form action="/foo.cgi">
submitdigest-uri/foo.cgi?bar=baz
Digest: uri mismatch - </foo.cgi> does not match request-uri </foo.cgi?bar=baz>
auth cache auth cookie
auth cookie ?
# etc.c auth cookie
passwdcache
auth cookie
Index: file.c
===================================================================
RCS file: /cvsroot/w3m/w3m/file.c,v
retrieving revision 1.231
diff -u -u -p -r1.231 file.c
--- file.c 8 Oct 2003 14:51:34 -0000 1.231
+++ file.c 16 Oct 2003 17:27:51 -0000
@@ -1430,7 +1430,11 @@ getAuthCookie(struct http_auth *hauth, c
}
else
+#if 1
+ ss = NULL;
+#else
ss = find_auth_cookie(pu->host, pu->port, pu->file, realm);
+#endif
if (realm && ss == NULL) {
int proxy = !strncasecmp("Proxy-Authorization:", auth_header,
auth_header_len);
--