diff options
author | Yang Tse <yangsita@gmail.com> | 2010-06-10 02:33:45 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-06-10 02:33:45 +0200 |
commit | 6b6fe2a4d59fa5537481dcd4de5473128f060249 (patch) | |
tree | 5df81ac5911fb4bc022c2f9e3e6a32521af200c8 /lib | |
parent | 54aca3c5ecdfbeaa7be195f4950bba78e6229a18 (diff) | |
download | curl-6b6fe2a4d59fa5537481dcd4de5473128f060249.tar.gz |
replace isprint() with ISPRINT()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/curl_fnmatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)++; } |