From d7de19ced208b8e83d4859f5e19b6795995c4d2b Mon Sep 17 00:00:00 2001 From: Jiaxin Wu Date: Tue, 25 Jul 2017 20:48:12 +0800 Subject: [PATCH] MdeModulePkg/DxeHttpLib: Fix spelling typo in EFI_HTTP_STATUS_CODE "HTTP_STATUS_300_MULTIPLE_CHIOCES" This should instead be: "HTTP_STATUS_300_MULTIPLE_CHOICES" Cc: Ye Ting Cc: Fu Siyuan Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin Reviewed-by: Fu Siyuan Reviewed-by: Ye Ting --- MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c b/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c index 505d5c89e9..caddbb7863 100644 --- a/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c +++ b/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c @@ -1930,7 +1930,7 @@ HttpMappingToStatusCode ( case 206: return HTTP_STATUS_206_PARTIAL_CONTENT; case 300: - return HTTP_STATUS_300_MULTIPLE_CHIOCES; + return HTTP_STATUS_300_MULTIPLE_CHOICES; case 301: return HTTP_STATUS_301_MOVED_PERMANENTLY; case 302: