From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.120]) by mx.groups.io with SMTP id smtpd.web11.6816.1581039651859164999 for ; Thu, 06 Feb 2020 17:40:52 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=bgZewL6c; spf=pass (domain: redhat.com, ip: 205.139.110.120, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581039651; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VgraKcOua0LVITqIo4TacgyqoS4aQtlmDWyizTg8TIY=; b=bgZewL6cKKsTEWSw6a3oGjbBJhf2Cs6vw6ula8FAf4udA7I7gfbQmkSQkr6nVwV5BlNJan v3pcR6GAmB85O/tLsO7v1/0bUeEHN926iPHDvveDGGCJiSzh8teqEkQ7pDUcHEQ4QyuMEM ir9Krj9brJnSz2IPZ3sgiBVWKQTk+O8= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-432-mNhedk85NOy734UlSDMN7Q-1; Thu, 06 Feb 2020 20:40:46 -0500 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D8E408010CB; Fri, 7 Feb 2020 01:40:45 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-120.brq.redhat.com [10.40.204.120]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C94325C241; Fri, 7 Feb 2020 01:40:44 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [PATCH v3 49/78] NetworkPkg/Tls: Fix few typos Date: Fri, 7 Feb 2020 02:08:02 +0100 Message-Id: <20200207010831.9046-50-philmd@redhat.com> In-Reply-To: <20200207010831.9046-1-philmd@redhat.com> References: <20200207010831.9046-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-MC-Unique: mNhedk85NOy734UlSDMN7Q-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Antoine Coeur Fix few typos in comments and documentation. Cc: Jiaxin Wu Cc: Siyuan Fu Cc: Maciej Rabeda Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Reviewed-by: Maciej Rabeda Signed-off-by: Philippe Mathieu-Daude --- NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigImpl.h | 2 +- NetworkPkg/TlsDxe/TlsDriver.h | 4 ++-- NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigVfr.vfr | 6 +++--- NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigImpl.c | 6 +++--- NetworkPkg/TlsDxe/TlsDriver.c | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigImpl.h b/NetworkPkg/T= lsAuthConfigDxe/TlsAuthConfigImpl.h index 89d02e39a319..e9af49289393 100644 --- a/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigImpl.h +++ b/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigImpl.h @@ -207,7 +207,7 @@ TlsAuthConfigAccessExtractConfig ( @param Progress A pointer to a string filled in with the offset of the most recent '&' before the first failing name / value pair (or the - beginn ing of the string if the failure + beginning of the string if the failure is in the first name / value pair) or the terminating NULL if all was successful. diff --git a/NetworkPkg/TlsDxe/TlsDriver.h b/NetworkPkg/TlsDxe/TlsDriver.h index e9b581d05459..64a81bd49063 100644 --- a/NetworkPkg/TlsDxe/TlsDriver.h +++ b/NetworkPkg/TlsDxe/TlsDriver.h @@ -189,7 +189,7 @@ TlsDriverEntryPoint ( then a new handle is created. If it is a pointer = to an existing UEFI handle, then the protocol is added to the existing UEFI h= andle. =20 - @retval EFI_SUCCES The protocol was added to ChildHandle. + @retval EFI_SUCCESS The protocol was added to ChildHandle. @retval EFI_INVALID_PARAMETER ChildHandle is NULL. @retval EFI_OUT_OF_RESOURCES There are not enough resources available t= o create the child. @@ -213,7 +213,7 @@ TlsServiceBindingCreateChild ( @param This Pointer to the EFI_SERVICE_BINDING_PROTOCOL instance= . @param ChildHandle Handle of the child to destroy. =20 - @retval EFI_SUCCES The protocol was removed from ChildHandle. + @retval EFI_SUCCESS The protocol was removed from ChildHandle. @retval EFI_UNSUPPORTED ChildHandle does not support the protocol = that is being removed. @retval EFI_INVALID_PARAMETER Child handle is NULL. @retval EFI_ACCESS_DENIED The protocol could not be removed from the= ChildHandle diff --git a/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigVfr.vfr b/NetworkPkg/= TlsAuthConfigDxe/TlsAuthConfigVfr.vfr index c622489afc82..99a7feafa20c 100644 --- a/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigVfr.vfr +++ b/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigVfr.vfr @@ -19,7 +19,7 @@ formset guid =3D TLS_AUTH_CONFIG_GUID; =20 // - // ##1 Form1: Main form for Tls Auth configration + // ##1 Form1: Main form for Tls Auth configuration // form formid =3D TLS_AUTH_CONFIG_FORMID1_FORM, title =3D STRING_TOKEN(STR_TLS_AUTH_CONFIG_TITLE); @@ -27,7 +27,7 @@ formset subtitle text =3D STRING_TOKEN(STR_NULL); =20 // - // Display Server CA configration + // Display Server CA configuration // goto TLS_AUTH_CONFIG_FORMID2_FORM, prompt =3D STRING_TOKEN(STR_TLS_AUTH_CONFIG_SERVER_CA), @@ -38,7 +38,7 @@ formset subtitle text =3D STRING_TOKEN(STR_NULL); =20 // - // Display Client cert configration + // Display Client cert configuration // grayoutif TRUE; /// Current unsupported. goto TLS_AUTH_CONFIG_FORMID3_FORM, diff --git a/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigImpl.c b/NetworkPkg/T= lsAuthConfigDxe/TlsAuthConfigImpl.c index 666216545277..715bc3a0a941 100644 --- a/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigImpl.c +++ b/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigImpl.c @@ -298,7 +298,7 @@ UpdateDeletePage ( @param[in] QuestionIdBase Base question id of the cert list. @param[in] DeleteIndex Cert index to delete. =20 - @retval EFI_SUCCESS Delete siganture successfully. + @retval EFI_SUCCESS Delete signature successfully. @retval EFI_NOT_FOUND Can't find the signature item, @retval EFI_OUT_OF_RESOURCES Could not allocate needed resources. **/ @@ -597,7 +597,7 @@ DevicePathToStr ( =20 @param DevicePath Device path. =20 - @retval NULL Not enough memory resourece for AllocateCopyPool= . + @retval NULL Not enough memory resource for AllocateCopyPool. @retval Other A new allocated string that represents the file = name. =20 **/ @@ -1303,7 +1303,7 @@ TlsAuthConfigAccessExtractConfig ( @param Progress A pointer to a string filled in with the offset of the most recent '&' before the first failing name / value pair (or the - beginn ing of the string if the failure + beginning of the string if the failure is in the first name / value pair) or the terminating NULL if all was successful. diff --git a/NetworkPkg/TlsDxe/TlsDriver.c b/NetworkPkg/TlsDxe/TlsDriver.c index 60ad396644f0..e42ac60764ff 100644 --- a/NetworkPkg/TlsDxe/TlsDriver.c +++ b/NetworkPkg/TlsDxe/TlsDriver.c @@ -298,7 +298,7 @@ TlsDriverEntryPoint ( then a new handle is created. If it is a pointer = to an existing UEFI handle, then the protocol is added to the existing UEFI h= andle. =20 - @retval EFI_SUCCES The protocol was added to ChildHandle. + @retval EFI_SUCCESS The protocol was added to ChildHandle. @retval EFI_INVALID_PARAMETER ChildHandle is NULL. @retval EFI_OUT_OF_RESOURCES There are not enough resources available t= o create the child. @@ -391,7 +391,7 @@ TlsServiceBindingCreateChild ( @param This Pointer to the EFI_SERVICE_BINDING_PROTOCOL instance= . @param ChildHandle Handle of the child to destroy. =20 - @retval EFI_SUCCES The protocol was removed from ChildHandle. + @retval EFI_SUCCESS The protocol was removed from ChildHandle. @retval EFI_UNSUPPORTED ChildHandle does not support the protocol = that is being removed. @retval EFI_INVALID_PARAMETER Child handle is NULL. @retval EFI_ACCESS_DENIED The protocol could not be removed from the= ChildHandle --=20 2.21.1