mirror of
https://github.com/curl/curl.git
synced 2026-07-28 08:03:05 +03:00
Better Digest stuff
This commit is contained in:
parent
9f69deec7d
commit
a39d77227f
5 changed files with 38 additions and 10 deletions
|
|
@ -670,7 +670,9 @@ CURLcode Curl_http(struct connectdata *conn)
|
|||
if(result)
|
||||
return result;
|
||||
}
|
||||
else if((conn->bits.user_passwd) && !checkheaders(data, "Authorization:")) {
|
||||
else if(!data->set.httpdigest && /* not if Digest is enabled */
|
||||
conn->bits.user_passwd &&
|
||||
!checkheaders(data, "Authorization:")) {
|
||||
char *authorization;
|
||||
|
||||
/* To prevent the user+password to get sent to other than the original
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue