]> sjero.net Git - wget/commitdiff
[svn] Fix netrc authorization in conjunction with HTTP.
authorhniksic <devnull@localhost>
Fri, 30 Nov 2001 09:33:22 +0000 (01:33 -0800)
committerhniksic <devnull@localhost>
Fri, 30 Nov 2001 09:33:22 +0000 (01:33 -0800)
Submitted by Daniel BODEA in <011901c162ca$19779df0$25c0a8c0@GHOTIX>.

src/ChangeLog
src/netrc.c

index 47a852a28ca8b48514c7c426e57d04d4d1a19930..ed710030e4ccdd110e63be242838c9c1e49690ce 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-31 Daniel BODEA <dali@dali-designs.com>
+
+       * netrc.c (search_netrc): When slack_default is 0, still look for
+       an account with matching password, just not the "default account".
+       HTTP Authorization using .netrc should now work as expected.
+
 2001-11-30  T. Bharath  <TBharath@responsenetworks.com>
 
        * http.c (persistent_available_p): Call SHUTDOWN_SSL if
index 28e9ec42d811f3f1d78fabcecf089775eb9fefeb..4b3d2b40a83050302feb50bff98d396181e5a64d 100644 (file)
@@ -90,8 +90,6 @@ search_netrc (const char *host, const char **acc, const char **passwd,
   /* Acc and password found; all OK.  */
   if (*acc && *passwd)
     return;
-  if (!*acc && !slack_default)
-    return;
   /* Some data not given -- try finding the host.  */
   for (l = netrc_list; l; l = l->next)
     {