aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-03-03 06:45:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-03-03 06:45:27 +0000
commit17962b3d2eb8b99b45709cc65ed346b63394ec22 (patch)
tree4c06fb50e61b3833efa4dcd541ff9cef19555266 /lib/http.c
parentf70acd597944be7a82b73cf5bc81c6251ed8a9be (diff)
Added typecast to please the MSVC compiler.
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 94f36c96a..876dbac2e 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -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 &&