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
This commit is contained in:
Lucas Pardue 2019-09-24 01:27:33 -04:00 committed by Jay Satiro
parent b259baabfe
commit 4a778f75c5
1 changed files with 1 additions and 1 deletions

View File

@ -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':