diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-08-26 17:20:29 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-26 17:20:29 +0000 |
commit | 982c5460f0eb521ce4f9526535e9d122fe8755bd (patch) | |
tree | fd0a68cad53523ba47817aa4c7764d288ee00f3d /lib/http.c | |
parent | 2a3a8848f35e6cb561fdb8d9303819e327029b81 (diff) | |
download | curl-982c5460f0eb521ce4f9526535e9d122fe8755bd.tar.gz |
Andrew Francis removed the need for/use of MSVC pragmas
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 763b90a3a..66fa234ec 100644 --- a/lib/http.c +++ b/lib/http.c @@ -552,7 +552,7 @@ CURLcode Curl_http(struct connectdata *conn) if(data->cookies) { co = Curl_cookie_getlist(data->cookies, host, ppath, - conn->protocol&PROT_HTTPS?TRUE:FALSE); + (conn->protocol&PROT_HTTPS?TRUE:FALSE)); } if (data->change.proxy && !data->set.tunnel_thru_httpproxy && |