1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Replace isupper with our uppercase macro version

This commit is contained in:
Yang Tse 2007-11-15 13:20:18 +00:00
parent 738e4f410c
commit ed636cbe44

View File

@ -620,7 +620,7 @@ again:
fprintf(server, "filename: %s\n", filename);
for (cp = mode; *cp; cp++)
if (isupper((int)*cp))
if(ISUPPER(*cp))
*cp = (char)tolower((int)*cp);
/* store input protocol */