diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-07 02:07:42 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-02-10 22:30:07 +0000 |
commit | 8d774c745c28cf49de20d4f495b3d06fc5b9757f (patch) | |
tree | be0cca3b975e8428dfa9153f0f0ccde004c18601 /NetworkPkg/Ip6Dxe | |
parent | 788421d5a766a4ce216e99e2277bb11c54e7d0f6 (diff) | |
download | edk2-8d774c745c28cf49de20d4f495b3d06fc5b9757f.tar.gz edk2-8d774c745c28cf49de20d4f495b3d06fc5b9757f.tar.bz2 edk2-8d774c745c28cf49de20d4f495b3d06fc5b9757f.zip |
NetworkPkg: Fix a typo
Correctly write 'malformatted' in documentation, comments and
debug strings.
Cc: Andrew Fish <afish@apple.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Maciej Rabeda <maciej.rabeda@intel.com>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
Message-Id: <20200207010831.9046-30-philmd@redhat.com>
Diffstat (limited to 'NetworkPkg/Ip6Dxe')
-rw-r--r-- | NetworkPkg/Ip6Dxe/Ip6Icmp.c | 4 | ||||
-rw-r--r-- | NetworkPkg/Ip6Dxe/Ip6Icmp.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/NetworkPkg/Ip6Dxe/Ip6Icmp.c b/NetworkPkg/Ip6Dxe/Ip6Icmp.c index 79fa34e041..bf9b17d907 100644 --- a/NetworkPkg/Ip6Dxe/Ip6Icmp.c +++ b/NetworkPkg/Ip6Dxe/Ip6Icmp.c @@ -393,7 +393,7 @@ Ip6ProcessIcmpInformation ( @param[in] Packet The content of the ICMPv6 packet with IP head
removed.
- @retval EFI_INVALID_PARAMETER The packet is malformated.
+ @retval EFI_INVALID_PARAMETER The packet is malformatted.
@retval EFI_SUCCESS The ICMPv6 message successfully processed.
@retval Others Failed to handle the ICMPv6 packet.
@@ -554,7 +554,7 @@ Ip6IsAnycast ( @param[in] Pointer If not NULL, identifies the octet offset within
the invoking packet where the error was detected.
- @retval EFI_INVALID_PARAMETER The packet is malformated.
+ @retval EFI_INVALID_PARAMETER The packet is malformatted.
@retval EFI_OUT_OF_RESOURCES There is no sufficient resource to complete the
operation.
@retval EFI_SUCCESS The ICMPv6 message was successfully sent out.
diff --git a/NetworkPkg/Ip6Dxe/Ip6Icmp.h b/NetworkPkg/Ip6Dxe/Ip6Icmp.h index 49a65f296a..c63adb0095 100644 --- a/NetworkPkg/Ip6Dxe/Ip6Icmp.h +++ b/NetworkPkg/Ip6Dxe/Ip6Icmp.h @@ -35,7 +35,7 @@ extern EFI_IP6_ICMP_TYPE mIp6SupportedIcmp[]; @param[in] Packet The content of the ICMPv6 packet with IP head
removed.
- @retval EFI_INVALID_PARAMETER The packet is malformated.
+ @retval EFI_INVALID_PARAMETER The packet is malformatted.
@retval EFI_SUCCESS The ICMPv6 message successfully processed.
@retval Others Failed to handle the ICMPv6 packet.
@@ -80,7 +80,7 @@ Ip6IsAnycast ( @param[in] Pointer If not NULL, identifies the octet offset within
the invoking packet where the error was detected.
- @retval EFI_INVALID_PARAMETER The packet is malformated.
+ @retval EFI_INVALID_PARAMETER The packet is malformatted.
@retval EFI_OUT_OF_RESOURCES There is no sufficient resource to complete the
operation.
@retval EFI_SUCCESS The ICMPv6 message was successfully sent out.
|