mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
Added typecast to please the MSVC compiler.
This commit is contained in:
parent
f70acd5979
commit
17962b3d2e
@ -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 &&
|
||||
|
Loading…
Reference in New Issue
Block a user