mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
typecast to prevent compiler warning
This commit is contained in:
parent
fa162e8feb
commit
3938e0f58b
@ -769,7 +769,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
|
||||
if(data->state.authwant == CURLAUTH_NTLM) {
|
||||
/* NTLM authentication is activated */
|
||||
CURLntlm ntlm =
|
||||
Curl_input_ntlm(conn, k->httpcode == 407, start);
|
||||
Curl_input_ntlm(conn, (bool)(k->httpcode == 407), start);
|
||||
|
||||
if(CURLNTLM_BAD != ntlm)
|
||||
conn->newurl = strdup(data->change.url); /* clone string */
|
||||
|
Loading…
Reference in New Issue
Block a user