From b5ec11b23c47f0803c973224bb10b60e079ebb17 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 28 Feb 2025 23:38:59 +0100 Subject: [PATCH] curl_fnmatch: replace ISSPACE with ISBLANK --- 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 ffac8048f6..58e3f776b9 100644 --- a/lib/curl_fnmatch.c +++ b/lib/curl_fnmatch.c @@ -319,7 +319,7 @@ static int loop(const unsigned char *pattern, const unsigned char *string, else if(charset[CURLFNM_PRINT]) found = ISPRINT(*s); else if(charset[CURLFNM_SPACE]) - found = ISSPACE(*s); + found = ISBLANK(*s); else if(charset[CURLFNM_UPPER]) found = ISUPPER(*s); else if(charset[CURLFNM_LOWER])