Fix a couple of embarrassing mistakes in the previous commit.

Submitted by:	Dimitry Andric <dimitry@andric.com>
This commit is contained in:
Dag-Erling Smørgrav 2010-07-28 15:29:18 +00:00
parent 41bc155d1f
commit c954ded250
1 changed files with 2 additions and 2 deletions

View File

@ -1786,13 +1786,13 @@ http_request(struct url *URL, const char *op, struct url_stat *us,
case hdr_www_authenticate:
if (conn->err != HTTP_NEED_AUTH)
break;
if (http_parse_authenticate(p, &server_challenges))
if (http_parse_authenticate(p, &server_challenges) == 0)
++n;
break;
case hdr_proxy_authenticate:
if (conn->err != HTTP_NEED_PROXY_AUTH)
break;
if (http_parse_authenticate(p, &proxy_challenges) == 0);
if (http_parse_authenticate(p, &proxy_challenges) == 0)
++n;
break;
case hdr_end: