gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 86/222: strcase: fix raw lowercasing the letter X


From: gnunet
Subject: [gnurl] 86/222: strcase: fix raw lowercasing the letter X
Date: Thu, 07 Nov 2019 00:09:42 +0100

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 4a778f75c526e638b2fe1e2f627eb6649638b570
Author: Lucas Pardue <address@hidden>
AuthorDate: Tue Sep 24 01:27:33 2019 -0400

    strcase: fix raw lowercasing the letter X
    
    Casing mistake in Curl_raw_tolower 'X' wasn't lowercased as 'x' prior to
    this change.
    
    Follow-up to 0023fce which added the function several days ago.
    
    Ref: https://github.com/curl/curl/pull/4401#discussion_r327396546
    
    Closes https://github.com/curl/curl/pull/4408
---
 lib/strcase.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/strcase.c b/lib/strcase.c
index 098cec7a8..67621e0f6 100644
--- a/lib/strcase.c
+++ b/lib/strcase.c
@@ -150,7 +150,7 @@ char Curl_raw_tolower(char in)
   case 'W':
     return 'w';
   case 'X':
-    return 'X';
+    return 'x';
   case 'Y':
     return 'y';
   case 'Z':

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



reply via email to

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