fix compiler warning: enumerated type mixed with another type
authorYang Tse <yangsita@gmail.com>
Mon, 31 May 2010 15:11:51 +0000 (17:11 +0200)
committerYang Tse <yangsita@gmail.com>
Mon, 31 May 2010 15:11:51 +0000 (17:11 +0200)
lib/ftp.c
lib/url.c

index 1a595ce..935ab31 100644 (file)
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -3509,7 +3509,7 @@ static CURLcode init_wc_data(struct connectdata *conn)
       path[0] = '\0';
     }
     else { /* only list */
-      conn->data->set.wildcardmatch = 0L;
+      conn->data->set.wildcardmatch = FALSE;
       ret = ftp_parse_url_path(conn);
       return ret;
     }
index 4d1632b..3b15f3c 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -769,7 +769,7 @@ CURLcode Curl_init_userdefined(struct UserDefined *set)
   res = setstropt(&set->str[STRING_SSL_CAPATH], (char *) CURL_CA_PATH);
 #endif
 
-  set->wildcardmatch  = 0L;
+  set->wildcardmatch  = FALSE;
   set->chunk_bgn      = ZERO_NULL;
   set->chunk_end      = ZERO_NULL;