gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 224/254: curl_ntlm_core: use Curl_raw_toupper inste


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 224/254: curl_ntlm_core: use Curl_raw_toupper instead of toupper
Date: Sat, 17 Jun 2017 16:54:16 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.1
in repository gnurl.

commit 796044273009a4ffc2b85eaebf0d44e427c3d8f4
Author: Marcel Raad <address@hidden>
AuthorDate: Mon Jun 5 00:27:29 2017 +0200

    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
---
 lib/curl_ntlm_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/curl_ntlm_core.c b/lib/curl_ntlm_core.c
index 25f2a3ad4..aea545295 100644
--- a/lib/curl_ntlm_core.c
+++ b/lib/curl_ntlm_core.c
@@ -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';
   }
 }

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]