[svn] Fix netrc authorization in conjunction with HTTP.

Submitted by Daniel BODEA in <011901c162ca$19779df0$25c0a8c0@GHOTIX>.
This commit is contained in:
hniksic 2001-11-30 01:33:22 -08:00
parent 2c37aef2d8
commit 5baed885db
2 changed files with 6 additions and 2 deletions

View 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

View 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)
{