mirror of
https://github.com/curl/curl.git
synced 2026-08-26 05:43:31 +03:00
CURLHTTP* renamed to CURLAUTH* and NEGOTIATE is now GSSNEGOTIATE as there's
a "plain" Negotiate as well.
This commit is contained in:
parent
e58f30b82a
commit
ecf32c964a
5 changed files with 23 additions and 34 deletions
|
|
@ -709,7 +709,7 @@ CURLcode Curl_http(struct connectdata *conn)
|
|||
if(result)
|
||||
return result;
|
||||
}
|
||||
else if(!data->set.httpdigest && /* not if Digest is enabled */
|
||||
else if((data->set.httpauth == CURLAUTH_BASIC) && /* if Basic is desired */
|
||||
conn->bits.user_passwd &&
|
||||
!checkheaders(data, "Authorization:")) {
|
||||
char *authorization;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue