mirror of
https://github.com/curl/curl.git
synced 2026-05-13 18:26:25 +03:00
Added typecast to please the MSVC compiler.
This commit is contained in:
parent
f70acd5979
commit
17962b3d2e
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue