]> sjero.net Git - wget/commitdiff
[svn] Contributed fix.
authorhniksic <devnull@localhost>
Thu, 2 Nov 2000 01:02:56 +0000 (17:02 -0800)
committerhniksic <devnull@localhost>
Thu, 2 Nov 2000 01:02:56 +0000 (17:02 -0800)
src/ChangeLog
src/ftp-basic.c

index 833671f1f543746130bda198096c8343a983dcea..c9e45a49cb35ac2aaf0058eaf880eee35e65e867 100644 (file)
@@ -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.
index dc773d2a4a63869a753b425de9cbad3992009d97..98f0a9e60d823f2418e5e6aa90731370e8812683 100644 (file)
@@ -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))