typecast to prevent compiler warning

This commit is contained in:
Daniel Stenberg 2003-08-29 08:43:06 +00:00
Родитель fa162e8feb
Коммит 3938e0f58b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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 */