mirror of
https://github.com/curl/curl.git
synced 2026-08-26 02:53:30 +03:00
parent
080973dcdb
commit
cd2b45201a
32 changed files with 68 additions and 75 deletions
|
|
@ -121,9 +121,9 @@ CURLcode Curl_output_digest(struct Curl_easy *data,
|
|||
passwdp = "";
|
||||
|
||||
#if defined(USE_WINDOWS_SSPI)
|
||||
have_chlg = digest->input_token ? TRUE : FALSE;
|
||||
have_chlg = !!digest->input_token;
|
||||
#else
|
||||
have_chlg = digest->nonce ? TRUE : FALSE;
|
||||
have_chlg = !!digest->nonce;
|
||||
#endif
|
||||
|
||||
if(!have_chlg) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue