public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch 0/3] Fix spelling typo in EFI_HTTP_STATUS_CODE
@ 2017-07-25 13:12 Jiaxin Wu
  2017-07-25 13:12 ` [Patch 1/3] MdePkg/Http.h: " Jiaxin Wu
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Jiaxin Wu @ 2017-07-25 13:12 UTC (permalink / raw)
  To: edk2-devel; +Cc: Ye Ting, Fu Siyuan, Wu Jiaxin

"HTTP_STATUS_300_MULTIPLE_CHIOCES"
This should instead be:
"HTTP_STATUS_300_MULTIPLE_CHOICES"

Cc: Ye Ting <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com>

Jiaxin Wu (3):
  MdePkg/Http.h: Fix spelling typo in EFI_HTTP_STATUS_CODE
  MdeModulePkg/DxeHttpLib: Fix spelling typo in EFI_HTTP_STATUS_CODE
  NetworkPkg/HttpBootDxe: Fix spelling typo in EFI_HTTP_STATUS_CODE

 MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c | 2 +-
 MdePkg/Include/Protocol/Http.h               | 2 +-
 NetworkPkg/HttpBootDxe/HttpBootSupport.c     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

-- 
1.9.5.msysgit.1



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Patch 1/3] MdePkg/Http.h: Fix spelling typo in EFI_HTTP_STATUS_CODE
  2017-07-25 13:12 [Patch 0/3] Fix spelling typo in EFI_HTTP_STATUS_CODE Jiaxin Wu
@ 2017-07-25 13:12 ` Jiaxin Wu
  2017-07-25 13:12 ` [Patch 2/3] MdeModulePkg/DxeHttpLib: " Jiaxin Wu
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Jiaxin Wu @ 2017-07-25 13:12 UTC (permalink / raw)
  To: edk2-devel; +Cc: Ye Ting, Fu Siyuan, Wu Jiaxin

"HTTP_STATUS_300_MULTIPLE_CHIOCES"
This should instead be:
"HTTP_STATUS_300_MULTIPLE_CHOICES"

Cc: Ye Ting <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com>
---
 MdePkg/Include/Protocol/Http.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MdePkg/Include/Protocol/Http.h b/MdePkg/Include/Protocol/Http.h
index 8ac16ec..297d9c3 100644
--- a/MdePkg/Include/Protocol/Http.h
+++ b/MdePkg/Include/Protocol/Http.h
@@ -71,11 +71,11 @@ typedef enum {
   HTTP_STATUS_202_ACCEPTED,
   HTTP_STATUS_203_NON_AUTHORITATIVE_INFORMATION,
   HTTP_STATUS_204_NO_CONTENT,
   HTTP_STATUS_205_RESET_CONTENT,
   HTTP_STATUS_206_PARTIAL_CONTENT,
-  HTTP_STATUS_300_MULTIPLE_CHIOCES,
+  HTTP_STATUS_300_MULTIPLE_CHOICES,
   HTTP_STATUS_301_MOVED_PERMANENTLY,
   HTTP_STATUS_302_FOUND,
   HTTP_STATUS_303_SEE_OTHER,
   HTTP_STATUS_304_NOT_MODIFIED,
   HTTP_STATUS_305_USE_PROXY,
-- 
1.9.5.msysgit.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Patch 2/3] MdeModulePkg/DxeHttpLib: Fix spelling typo in EFI_HTTP_STATUS_CODE
  2017-07-25 13:12 [Patch 0/3] Fix spelling typo in EFI_HTTP_STATUS_CODE Jiaxin Wu
  2017-07-25 13:12 ` [Patch 1/3] MdePkg/Http.h: " Jiaxin Wu
@ 2017-07-25 13:12 ` Jiaxin Wu
  2017-07-25 13:12 ` [Patch 3/3] NetworkPkg/HttpBootDxe: " Jiaxin Wu
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Jiaxin Wu @ 2017-07-25 13:12 UTC (permalink / raw)
  To: edk2-devel; +Cc: Ye Ting, Fu Siyuan, Wu Jiaxin

"HTTP_STATUS_300_MULTIPLE_CHIOCES"
This should instead be:
"HTTP_STATUS_300_MULTIPLE_CHOICES"

Cc: Ye Ting <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com>
---
 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 505d5c8..caddbb7 100644
--- a/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c
+++ b/MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c
@@ -1928,11 +1928,11 @@ HttpMappingToStatusCode (
   case 205:
     return HTTP_STATUS_205_RESET_CONTENT;
   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:
     return HTTP_STATUS_302_FOUND;
   case 303:
-- 
1.9.5.msysgit.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Patch 3/3] NetworkPkg/HttpBootDxe: Fix spelling typo in EFI_HTTP_STATUS_CODE
  2017-07-25 13:12 [Patch 0/3] Fix spelling typo in EFI_HTTP_STATUS_CODE Jiaxin Wu
  2017-07-25 13:12 ` [Patch 1/3] MdePkg/Http.h: " Jiaxin Wu
  2017-07-25 13:12 ` [Patch 2/3] MdeModulePkg/DxeHttpLib: " Jiaxin Wu
@ 2017-07-25 13:12 ` Jiaxin Wu
  2017-07-26  2:06 ` [Patch 0/3] " Fu, Siyuan
  2017-07-26  6:57 ` Ye, Ting
  4 siblings, 0 replies; 6+ messages in thread
From: Jiaxin Wu @ 2017-07-25 13:12 UTC (permalink / raw)
  To: edk2-devel; +Cc: Ye Ting, Fu Siyuan, Wu Jiaxin

"HTTP_STATUS_300_MULTIPLE_CHIOCES"
This should instead be:
"HTTP_STATUS_300_MULTIPLE_CHOICES"

Cc: Ye Ting <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com>
---
 NetworkPkg/HttpBootDxe/HttpBootSupport.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NetworkPkg/HttpBootDxe/HttpBootSupport.c b/NetworkPkg/HttpBootDxe/HttpBootSupport.c
index 5024f2e..a19fe6c 100644
--- a/NetworkPkg/HttpBootDxe/HttpBootSupport.c
+++ b/NetworkPkg/HttpBootDxe/HttpBootSupport.c
@@ -158,11 +158,11 @@ HttpBootPrintErrorMessage (
   )
 {
   AsciiPrint ("\n");
 
   switch (StatusCode) {
-  case HTTP_STATUS_300_MULTIPLE_CHIOCES:
+  case HTTP_STATUS_300_MULTIPLE_CHOICES:
     AsciiPrint ("\n  Redirection: 300 Multiple Choices");
     break; 
     
   case HTTP_STATUS_301_MOVED_PERMANENTLY:
     AsciiPrint ("\n  Redirection: 301 Moved Permanently");
-- 
1.9.5.msysgit.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Patch 0/3] Fix spelling typo in EFI_HTTP_STATUS_CODE
  2017-07-25 13:12 [Patch 0/3] Fix spelling typo in EFI_HTTP_STATUS_CODE Jiaxin Wu
                   ` (2 preceding siblings ...)
  2017-07-25 13:12 ` [Patch 3/3] NetworkPkg/HttpBootDxe: " Jiaxin Wu
@ 2017-07-26  2:06 ` Fu, Siyuan
  2017-07-26  6:57 ` Ye, Ting
  4 siblings, 0 replies; 6+ messages in thread
From: Fu, Siyuan @ 2017-07-26  2:06 UTC (permalink / raw)
  To: Wu, Jiaxin, edk2-devel@lists.01.org; +Cc: Ye, Ting

Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>

-----Original Message-----
From: Wu, Jiaxin 
Sent: Tuesday, July 25, 2017 9:12 PM
To: edk2-devel@lists.01.org
Cc: Ye, Ting <ting.ye@intel.com>; Fu, Siyuan <siyuan.fu@intel.com>; Wu, Jiaxin <jiaxin.wu@intel.com>
Subject: [Patch 0/3] 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 <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com>

Jiaxin Wu (3):
  MdePkg/Http.h: Fix spelling typo in EFI_HTTP_STATUS_CODE
  MdeModulePkg/DxeHttpLib: Fix spelling typo in EFI_HTTP_STATUS_CODE
  NetworkPkg/HttpBootDxe: Fix spelling typo in EFI_HTTP_STATUS_CODE

 MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c | 2 +-
 MdePkg/Include/Protocol/Http.h               | 2 +-
 NetworkPkg/HttpBootDxe/HttpBootSupport.c     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

-- 
1.9.5.msysgit.1



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Patch 0/3] Fix spelling typo in EFI_HTTP_STATUS_CODE
  2017-07-25 13:12 [Patch 0/3] Fix spelling typo in EFI_HTTP_STATUS_CODE Jiaxin Wu
                   ` (3 preceding siblings ...)
  2017-07-26  2:06 ` [Patch 0/3] " Fu, Siyuan
@ 2017-07-26  6:57 ` Ye, Ting
  4 siblings, 0 replies; 6+ messages in thread
From: Ye, Ting @ 2017-07-26  6:57 UTC (permalink / raw)
  To: Wu, Jiaxin, edk2-devel@lists.01.org; +Cc: Fu, Siyuan

Series Reviewed-by: Ye Ting <ting.ye@intel.com>

-----Original Message-----
From: Wu, Jiaxin 
Sent: Tuesday, July 25, 2017 9:12 PM
To: edk2-devel@lists.01.org
Cc: Ye, Ting <ting.ye@intel.com>; Fu, Siyuan <siyuan.fu@intel.com>; Wu, Jiaxin <jiaxin.wu@intel.com>
Subject: [Patch 0/3] 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 <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com>

Jiaxin Wu (3):
  MdePkg/Http.h: Fix spelling typo in EFI_HTTP_STATUS_CODE
  MdeModulePkg/DxeHttpLib: Fix spelling typo in EFI_HTTP_STATUS_CODE
  NetworkPkg/HttpBootDxe: Fix spelling typo in EFI_HTTP_STATUS_CODE

 MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c | 2 +-
 MdePkg/Include/Protocol/Http.h               | 2 +-
 NetworkPkg/HttpBootDxe/HttpBootSupport.c     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

-- 
1.9.5.msysgit.1



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-07-26  6:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-25 13:12 [Patch 0/3] Fix spelling typo in EFI_HTTP_STATUS_CODE Jiaxin Wu
2017-07-25 13:12 ` [Patch 1/3] MdePkg/Http.h: " Jiaxin Wu
2017-07-25 13:12 ` [Patch 2/3] MdeModulePkg/DxeHttpLib: " Jiaxin Wu
2017-07-25 13:12 ` [Patch 3/3] NetworkPkg/HttpBootDxe: " Jiaxin Wu
2017-07-26  2:06 ` [Patch 0/3] " Fu, Siyuan
2017-07-26  6:57 ` Ye, Ting

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox