From 6b6fe2a4d59fa5537481dcd4de5473128f060249 Mon Sep 17 00:00:00 2001
From: Yang Tse <yangsita@gmail.com>
Date: Thu, 10 Jun 2010 02:33:45 +0200
Subject: [PATCH] replace isprint() with ISPRINT()

---
 lib/curl_fnmatch.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/curl_fnmatch.c b/lib/curl_fnmatch.c
index 0725ce2bd6..ad4ec18719 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)++;
         }
-- 
GitLab