summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Araujo <araujo@FreeBSD.org>2015-07-04 17:22:07 +0000
committerMarcelo Araujo <araujo@FreeBSD.org>2015-07-04 17:22:07 +0000
commitddcc2ecb3adeb70ac944bcdb0c41dd6d082a33e4 (patch)
tree46a0e4f0c0b7b4b6b2763e30e67ef0f8a139a0e4
parentfd1099547835ea5391feee010529cf34488af228 (diff)
Notes
-rw-r--r--lib/libfetch/http.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libfetch/http.c b/lib/libfetch/http.c
index e0c297971a363..91ca6a3997398 100644
--- a/lib/libfetch/http.c
+++ b/lib/libfetch/http.c
@@ -1330,7 +1330,6 @@ static int
http_authorize(conn_t *conn, const char *hdr, http_auth_challenges_t *cs,
http_auth_params_t *parms, struct url *url)
{
- http_auth_challenge_t *basic = NULL;
http_auth_challenge_t *digest = NULL;
int i;
@@ -1340,10 +1339,8 @@ http_authorize(conn_t *conn, const char *hdr, http_auth_challenges_t *cs,
return (-1);
}
- /* Look for a Digest and a Basic challenge */
+ /* Look for a Digest */
for (i = 0; i < cs->count; i++) {
- if (cs->challenges[i]->scheme == HTTPAS_BASIC)
- basic = cs->challenges[i];
if (cs->challenges[i]->scheme == HTTPAS_DIGEST)
digest = cs->challenges[i];
}