mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Contributed fix.
This commit is contained in:
parent
268ac1fc7f
commit
6eb0870af0
@ -1,3 +1,13 @@
|
||||
2000-11-02 Junio Hamano <junio@twinsun.com>
|
||||
|
||||
* ftp-basic.c (ftp_login): Make comparison case-insensitive.
|
||||
|
||||
2000-11-02 Tyler Riddle <triddle@liquidmarket.com>
|
||||
|
||||
* http.c (known_authentication_scheme_p): Recognize NTML
|
||||
authentication.
|
||||
(create_authorization_line): Treat NTML the same as `Basic'.
|
||||
|
||||
2000-11-02 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||
|
||||
* retr.c (retrieve_url): Free url before returning.
|
||||
|
@ -185,7 +185,7 @@ ftp_login (struct rbuf *rbuf, const char *acc, const char *pass)
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE (skey_head); i++)
|
||||
{
|
||||
if (strncmp (skey_head[i], respline, strlen (skey_head[i])) == 0)
|
||||
if (strncasecmp (skey_head[i], respline, strlen (skey_head[i])) == 0)
|
||||
break;
|
||||
}
|
||||
if (i < ARRAY_SIZE (skey_head))
|
||||
|
Loading…
Reference in New Issue
Block a user