Added typecast to please the MSVC compiler.

This commit is contained in:
Daniel Stenberg 2003-03-03 06:45:27 +00:00
parent f70acd5979
commit 17962b3d2e

View File

@ -716,7 +716,7 @@ CURLcode Curl_http(struct connectdata *conn)
if(data->cookies) {
co = Curl_cookie_getlist(data->cookies,
host, ppath,
(conn->protocol&PROT_HTTPS?TRUE:FALSE));
(bool)(conn->protocol&PROT_HTTPS?TRUE:FALSE));
}
if (data->change.proxy && *data->change.proxy &&
!data->set.tunnel_thru_httpproxy &&