From: Yang Tse Date: Thu, 10 Jun 2010 00:33:45 +0000 (+0200) Subject: replace isprint() with ISPRINT() X-Git-Tag: curl-7_21_0~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b6fe2a4d59fa5537481dcd4de5473128f060249;p=curl replace isprint() with ISPRINT() --- diff --git a/lib/curl_fnmatch.c b/lib/curl_fnmatch.c index 0725ce2bd..ad4ec1871 100644 --- a/lib/curl_fnmatch.c +++ b/lib/curl_fnmatch.c @@ -223,7 +223,7 @@ static int setcharset(unsigned char **p, unsigned char *charset) } else if(c == '\\') { c = *(++(*p)); - if(isprint(c)) { + if(ISPRINT(c)) { charset[c] = 1; (*p)++; }