From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.81]) by mx.groups.io with SMTP id smtpd.web12.6457.1581037723231327404 for ; Thu, 06 Feb 2020 17:08:43 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=Vbd7+ugA; spf=pass (domain: redhat.com, ip: 207.211.31.81, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581037722; 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=uDTfXF3tOn1w6+K+V7fnWnpp9MPUTQW9rohWoGC6gRU=; b=Vbd7+ugAguBt1M3628ygaqsmJNyJHvOV+Vw8sBfNExXdgd0drJx6sjqwTqTKZezTy5UInP +2huc55YyxPdsTsBAyg+6VZJF9DA4DDqrQGkZlZXhzX7/4sb1vNPaTFR4qMU2ycMIqhoks pJtyBpRGzRUr/15PSOrKFsWJ4fxnn4s= 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-135-E3yJ5aTHMtqwp1CtvjuXyw-1; Thu, 06 Feb 2020 20:08:38 -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 11D09DB23; Fri, 7 Feb 2020 01:08:37 +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 C482D5C1BB; Fri, 7 Feb 2020 01:08:35 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [PATCH v3 01/78] CryptoPkg/OpensslLib: Fix few typos Date: Fri, 7 Feb 2020 02:07:14 +0100 Message-Id: <20200207010831.9046-2-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: E3yJ5aTHMtqwp1CtvjuXyw-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. Cc: Jian J Wang Cc: Xiaoyu Lu Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Reviewed-by: Jian J Wang 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.1