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.8381.1575389792402382576 for ; Tue, 03 Dec 2019 08:16:32 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=Ap2ctWbZ; 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=1575389791; 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=dbrePuxmBoB+mejeytE/CfihzUES+Pi3Ld7RZrXT2ZE=; b=Ap2ctWbZA4d+LvbRY8Ccx8PSfPWekmKwskm6Rv7MtGPKq1f9fKxIDPZECFJXluZaI1qTNd lkUQ9AN14T3NWseMQwdb0AJrH6+dFCZivJcFbARepAiWYkRljwOn5L9hHYf9Q8M68NcbMN 8DpUxHGQlOnMfakk0IzeSuHITrXs8m8= 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-94-5mEHGAgYOH2k4RVnBTwdpg-1; Tue, 03 Dec 2019 11:16:29 -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 6C9E6800C79; Tue, 3 Dec 2019 16:16:28 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-86.brq.redhat.com [10.40.204.86]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EBB0060C81; Tue, 3 Dec 2019 16:16:25 +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 01/79] CryptoPkg/OpensslLib: Fix few typos Date: Tue, 3 Dec 2019 17:14:44 +0100 Message-Id: <20191203161602.15969-2-philmd@redhat.com> In-Reply-To: <20191203161602.15969-1-philmd@redhat.com> References: <20191203161602.15969-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: 5mEHGAgYOH2k4RVnBTwdpg-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 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