mirror of
https://github.com/curl/curl.git
synced 2026-05-19 19:06:22 +03:00
curl_ntlm_core: use Curl_raw_toupper instead of toupper
This was the only remaining use of toupper in the entire source code. Suggested-by: Daniel Stenberg
This commit is contained in:
parent
6b9f4f7f0f
commit
7960442730
1 changed files with 1 additions and 1 deletions
|
|
@ -522,7 +522,7 @@ static void ascii_uppercase_to_unicode_le(unsigned char *dest,
|
|||
{
|
||||
size_t i;
|
||||
for(i = 0; i < srclen; i++) {
|
||||
dest[2 * i] = (unsigned char)(toupper((unsigned char)src[i]));
|
||||
dest[2 * i] = (unsigned char)(Curl_raw_toupper(src[i]));
|
||||
dest[2 * i + 1] = '\0';
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue