1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

http.c: Remove duplicate (authp->avail & CURLAUTH_DIGEST) check

From commit 2708d4259b.
This commit is contained in:
Steve Holme 2016-08-21 10:25:45 +01:00
parent b820e40f34
commit 317795d1bf

View File

@ -858,11 +858,9 @@ CURLcode Curl_http_input_auth(struct connectdata *conn, bool proxy,
#endif #endif
#ifndef CURL_DISABLE_CRYPTO_AUTH #ifndef CURL_DISABLE_CRYPTO_AUTH
if(checkprefix("Digest", auth)) { if(checkprefix("Digest", auth)) {
if((authp->avail & CURLAUTH_DIGEST) != 0) { if((authp->avail & CURLAUTH_DIGEST) != 0)
infof(data, "Ignoring duplicate digest auth header.\n"); infof(data, "Ignoring duplicate digest auth header.\n");
} else if(Curl_auth_is_digest_supported()) {
else if((authp->avail & CURLAUTH_DIGEST) ||
Curl_auth_is_digest_supported()) {
CURLcode result; CURLcode result;
*availp |= CURLAUTH_DIGEST; *availp |= CURLAUTH_DIGEST;