From: Yang Tse Date: Thu, 15 Nov 2007 13:12:35 +0000 (+0000) Subject: Replace isgraph with our uppercase macro version X-Git-Tag: curl-7_18_0~278 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=738e4f410c5b84a4d843c7de9a8a00ce45af0955;p=thirdparty%2Fcurl.git Replace isgraph with our uppercase macro version --- diff --git a/src/main.c b/src/main.c index 4f9b3e4ece..d1b7009b75 100644 --- a/src/main.c +++ b/src/main.c @@ -3422,7 +3422,7 @@ CURLcode _my_setopt(CURL *curl, struct Configurable *config, const char *name, } /* attempt to figure out if it is a string (since the tag numerical doesn't offer this info) and then output it as a string if so */ - else if(pval && isgraph(ptr[0]) && isgraph(ptr[1]) && isgraph(ptr[2])) + else if(pval && ISGRAPH(ptr[0]) && ISGRAPH(ptr[1]) && ISGRAPH(ptr[2])) snprintf(value, sizeof(value), "\"%s\"", (char *)ptr); else if(pval) { snprintf(value, sizeof(value), "%p", pval);