From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.120]) by mx.groups.io with SMTP id smtpd.web12.1790.1578042505712771937 for ; Fri, 03 Jan 2020 01:08:25 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=ZKkDwm7X; spf=pass (domain: redhat.com, ip: 207.211.31.120, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578042504; 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=zTIiuF2/RK/tHDAly+xak/AHiq0JEm5Cujr/NFSUvqo=; b=ZKkDwm7XIETeTOdiXTiuJTHKk1vNwreqGfiCly98EPPewMN5DV1EjihvA69ZLww0kWauO1 Q7C9eUsnKlG9SR0uB0R/jlMvKR991jfqYTM4XnqBLcErv6G0V7q7pR+Tnkdfdk7+kzff6X tk4YpNMRms3QG/9YOCC5QQ64YtkFqVo= 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-99-fXOzh9VXPrC8XDYnf_OXTw-1; Fri, 03 Jan 2020 04:08:23 -0500 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 19F41185432C; Fri, 3 Jan 2020 09:08:22 +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 6A78E7BA25; Fri, 3 Jan 2020 09:08:20 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Antoine Coeur , Jian J Wang , Xiaoyu Lu , Philippe Mathieu-Daude Subject: [PATCH v2 01/78] CryptoPkg/OpensslLib: Fix few typos Date: Fri, 3 Jan 2020 10:06:55 +0100 Message-Id: <20200103090812.10592-2-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.15 X-MC-Unique: fXOzh9VXPrC8XDYnf_OXTw-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. Cc: Jian J Wang Cc: Xiaoyu Lu Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Signed-off-by: Philippe Mathieu-Daude --- CryptoPkg/Library/OpensslLib/rand_pool.c | 8 ++++---- CryptoPkg/Library/OpensslLib/rand_pool_noise.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CryptoPkg/Library/OpensslLib/rand_pool.c b/CryptoPkg/Library/O= pensslLib/rand_pool.c index 9d2a4ad13823..9f3983f7c35b 100644 --- a/CryptoPkg/Library/OpensslLib/rand_pool.c +++ b/CryptoPkg/Library/OpensslLib/rand_pool.c @@ -129,7 +129,7 @@ RandGetSeed128 ( AES_KEY AESKey; =20 // - // Chose an arbitary key and zero the feed_forward_value (FFV) + // Chose an arbitrary key and zero the feed_forward_value (FFV) // for (Index =3D 0; Index < 16; Index++) { Key[Index] =3D (UINT8) Index; @@ -287,7 +287,7 @@ int rand_pool_add_additional_data(RAND_POOL *pool) } =20 /* - * Dummy Implememtation for UEFI + * Dummy Implementation for UEFI * * This is OpenSSL required interface. */ @@ -297,7 +297,7 @@ int rand_pool_init(void) } =20 /* - * Dummy Implememtation for UEFI + * Dummy Implementation for UEFI * * This is OpenSSL required interface. */ @@ -306,7 +306,7 @@ void rand_pool_cleanup(void) } =20 /* - * Dummy Implememtation for UEFI + * Dummy Implementation for UEFI * * This is OpenSSL required interface. */ diff --git a/CryptoPkg/Library/OpensslLib/rand_pool_noise.c b/CryptoPkg/Lib= rary/OpensslLib/rand_pool_noise.c index c16ed8b45496..212834e27acc 100644 --- a/CryptoPkg/Library/OpensslLib/rand_pool_noise.c +++ b/CryptoPkg/Library/OpensslLib/rand_pool_noise.c @@ -22,7 +22,7 @@ GetRandomNoise64 ( ) { // - // Return FALSE will fallback to use PerformaceCounter to + // Return FALSE will fallback to use PerformanceCounter to // generate noise. // return FALSE; --=20 2.21.0