mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
Replace isupper with our uppercase macro version
This commit is contained in:
parent
738e4f410c
commit
ed636cbe44
@ -620,7 +620,7 @@ again:
|
|||||||
fprintf(server, "filename: %s\n", filename);
|
fprintf(server, "filename: %s\n", filename);
|
||||||
|
|
||||||
for (cp = mode; *cp; cp++)
|
for (cp = mode; *cp; cp++)
|
||||||
if (isupper((int)*cp))
|
if(ISUPPER(*cp))
|
||||||
*cp = (char)tolower((int)*cp);
|
*cp = (char)tolower((int)*cp);
|
||||||
|
|
||||||
/* store input protocol */
|
/* store input protocol */
|
||||||
|
Loading…
Reference in New Issue
Block a user