From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.61]) by mx.groups.io with SMTP id smtpd.web12.1993.1578044472955895409 for ; Fri, 03 Jan 2020 01:41:13 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=UsQEmveH; spf=pass (domain: redhat.com, ip: 205.139.110.61, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578044472; 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=JWhN9x3UMhT42Ov5MWLsxNZxdxYX0YT9snwZsRrMZw4=; b=UsQEmveHi/93j8IPu5lQpyUWeYZDKM6QxsQ7R+mCs/VYKS9S9e64kMuOpVn7Ci8wDbXvId 2N/yqYaUFcTtuioMYe8APE/NjnsLRxaAvj4n8luGE8b2OXDCyL/mmlnIu4LhxrmU6t4bJR rjQGdg3kZT8vtzj6osc25FSgRXunIbM= 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-324-brHooML0NJK2K8weLbhf0w-1; Fri, 03 Jan 2020 04:41:10 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 9B7C9800EB8; Fri, 3 Jan 2020 09:41:09 +0000 (UTC) Received: from x1w.redhat.com (ovpn-116-190.ams2.redhat.com [10.36.116.190]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D776D60BF7; Fri, 3 Jan 2020 09:41:04 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Antoine Coeur , Jiaxin Wu , Siyuan Fu , Maciej Rabeda , Philippe Mathieu-Daude Subject: [PATCH v2 49/78] NetworkPkg/Tls: Fix few typos Date: Fri, 3 Jan 2020 10:07:43 +0100 Message-Id: <20200103090812.10592-50-philmd@redhat.com> In-Reply-To: <20200103090812.10592-1-philmd@redhat.com> References: <20200103090812.10592-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: brHooML0NJK2K8weLbhf0w-1 X-Mimecast-Spam-Score: 0 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 @@ ON_EXIT: @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 @@ ON_CLEAN_SERVICE: 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 @@ ON_ERROR: @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.0