From: Yang Tse Date: Mon, 31 May 2010 15:11:51 +0000 (+0200) Subject: fix compiler warning: enumerated type mixed with another type X-Git-Tag: curl-7_21_0~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b4fa27ae4b5e01f2b7494edb0ba37efb349cf6ae;p=thirdparty%2Fcurl.git fix compiler warning: enumerated type mixed with another type --- diff --git a/lib/ftp.c b/lib/ftp.c index 1a595cea2d..935ab31dc4 100644 --- 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; } diff --git a/lib/url.c b/lib/url.c index 4d1632b66c..3b15f3c3bb 100644 --- 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;