examples/fips_validation: fix typo

Message ID 20200214114118.87662-1-roy.fan.zhang@intel.com (mailing list archive)
State Accepted, archived
Delegated to: David Marchand
Headers
Series examples/fips_validation: fix typo |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-testing success Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/travis-robot success Travis build: passed
ci/Intel-compilation fail apply issues

Commit Message

Fan Zhang Feb. 14, 2020, 11:41 a.m. UTC
  This patch fixes the cipher len keyword typo.

Fixes: 07f5e4553293 ("examples/fips_validation: fix cipher length for AES-GCM")
Cc: ssarananaga@marvell.com

Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
---
 examples/fips_validation/fips_validation_gcm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

David Marchand Feb. 14, 2020, 1:13 p.m. UTC | #1
On Fri, Feb 14, 2020 at 12:41 PM Fan Zhang <roy.fan.zhang@intel.com> wrote:
>
> This patch fixes the cipher len keyword typo.
>
> Fixes: 07f5e4553293 ("examples/fips_validation: fix cipher length for AES-GCM")
>

Suggested-by: Akhil Goyal <akhil.goyal@nxp.com>

> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>

Acked-by: David Marchand <david.marchand@redhat.com>

Applied, thanks.
  

Patch

diff --git a/examples/fips_validation/fips_validation_gcm.c b/examples/fips_validation/fips_validation_gcm.c
index f29502559..bc2d37dcb 100644
--- a/examples/fips_validation/fips_validation_gcm.c
+++ b/examples/fips_validation/fips_validation_gcm.c
@@ -19,7 +19,7 @@ 
 #define PTLEN_STR	"PTlen = "
 #define AADLEN_STR	"AADlen = "
 #define TAGLEN_STR	"Taglen = "
-#define CTLEN_STR	"PTlen = "
+#define CTLEN_STR	"CTlen = "
 
 #define COUNT_STR	"Count = "
 #define KEY_STR		"Key = "