diff options
author | Lucas Pardue <lucaspardue.24.7@gmail.com> | 2019-09-24 01:27:33 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2019-09-24 01:31:37 -0400 |
commit | 4a778f75c526e638b2fe1e2f627eb6649638b570 (patch) | |
tree | 5e2ecc0eed21855378154ed88aa7c39f17da7d94 /lib | |
parent | b259baabfeca71e46132435e5498513538515c11 (diff) | |
download | curl-4a778f75c526e638b2fe1e2f627eb6649638b570.tar.gz |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strcase.c | 2 |
1 files changed, 1 insertions, 1 deletions
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': |