mirror of
https://github.com/curl/curl.git
synced 2026-04-19 11:21:20 +03:00
Replace isupper with our uppercase macro version
This commit is contained in:
parent
738e4f410c
commit
ed636cbe44
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue