aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-09-08 19:34:58 +0000
committerYang Tse <yangsita@gmail.com>2008-09-08 19:34:58 +0000
commit2ef72f7abb0f955d08a7f26d1a65a21be26b1af9 (patch)
tree22b8d1aaea77650ea5aa901d953f805b46746aab /lib/url.c
parenteae27d178829e0a2529c6e51a1b9b7acb08f7d14 (diff)
fix compiler warning
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/url.c b/lib/url.c
index 197548a12..a79ab9d78 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -1038,8 +1038,8 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
* other - POST is kept as POST after 301 and 302
*/
long postRedir = va_arg(param, long);
- data->set.post301 = (postRedir & CURL_REDIR_POST_301)?1:0;
- data->set.post302 = (postRedir & CURL_REDIR_POST_302)?1:0;
+ data->set.post301 = (bool)((postRedir & CURL_REDIR_POST_301)?TRUE:FALSE);
+ data->set.post302 = (bool)((postRedir & CURL_REDIR_POST_302)?TRUE:FALSE);
}
break;
@@ -3683,8 +3683,8 @@ static CURLcode parse_remote_port(struct SessionHandle *data,
if(conn->bits.httpproxy) {
/* we need to create new URL with the new port number */
char *url;
- bool isftp = strequal("ftp", conn->protostr) ||
- strequal("ftps", conn->protostr);
+ bool isftp = (bool)(strequal("ftp", conn->protostr) ||
+ strequal("ftps", conn->protostr));
/*
* This synthesized URL isn't always right--suffixes like ;type=A