aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-05-31 17:22:43 +0200
committerYang Tse <yangsita@gmail.com>2010-05-31 17:22:43 +0200
commit0546d448ced64975a6b71ef4ee23650f5fc1e362 (patch)
tree98a511021ebcfc0aab70b5003831faa5b3a359ff /lib
parentb4fa27ae4b5e01f2b7494edb0ba37efb349cf6ae (diff)
fix compiler warning: enumerated type mixed with another type
Diffstat (limited to 'lib')
-rw-r--r--lib/curl_fnmatch.c2
-rw-r--r--lib/url.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/curl_fnmatch.c b/lib/curl_fnmatch.c
index 6485c97bb..b250a223a 100644
--- a/lib/curl_fnmatch.c
+++ b/lib/curl_fnmatch.c
@@ -169,7 +169,7 @@ static int setcharset(unsigned char **p, unsigned char *charset)
if(!something_found) {
if(charset[CURLFNM_NEGATE]) {
charset[c] = 1;
- something_found = 1;
+ something_found = TRUE;
}
else
charset[CURLFNM_NEGATE] = 1; /* negate charset */
diff --git a/lib/url.c b/lib/url.c
index 3b15f3c3b..6c48dcb2e 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -4172,7 +4172,7 @@ static CURLcode parse_url_userpass(struct SessionHandle *data,
* set user/passwd, but doing that first adds more cases here :-(
*/
- conn->bits.userpwd_in_url = 1;
+ conn->bits.userpwd_in_url = TRUE;
if(data->set.use_netrc != CURL_NETRC_REQUIRED) {
/* We could use the one in the URL */