diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-02-01 05:01:47 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-02-01 05:01:47 +0000 |
commit | 6ab7851b7969affc130a524605968d01bff53acc (patch) | |
tree | 7f15d5c1fce585a50ee019ea35b05473a72b71df /file.c | |
parent | [w3m-dev 02961] halfdump image is not consistent (diff) | |
download | w3m-6ab7851b7969affc130a524605968d01bff53acc.tar.gz w3m-6ab7851b7969affc130a524605968d01bff53acc.zip |
[w3m-dev 02968] fix problem with Netscape-Enterprise WWW-authenticate
* file.c (findAuthentication): token is case insensitive
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: file.c,v 1.57 2002/01/31 18:40:16 ukai Exp $ */ +/* $Id: file.c,v 1.58 2002/02/01 05:01:47 ukai Exp $ */ #include "fm.h" #include <sys/types.h> #include "myctype.h" @@ -1251,7 +1251,7 @@ findAuthentication(struct http_auth *hauth, Buffer *buf, char *auth_field) SKIP_BLANKS(p); p0 = p; for (ha = &www_auth[0]; ha->scheme != NULL; ha++) { - if (strncmp(p, ha->scheme, strlen(ha->scheme)) == 0) { + if (strncasecmp(p, ha->scheme, strlen(ha->scheme)) == 0) { if (hauth->pri < ha->pri) { *hauth = *ha; p += strlen(ha->scheme); |