From bf5c71126b7083f80ed1a4411c4ca7d5b0cf15bd Mon Sep 17 00:00:00 2001 From: Ciara Power Date: Wed, 11 Nov 2020 09:42:54 +0000 Subject: [PATCH] test/crypto: fix typo in block cipher output The print statement had a typo, "sesionless" should have been "sessionless". This is now fixed. Fixes: afcfa2fd0431 ("test/crypto: check session-less support") Cc: stable@dpdk.org Signed-off-by: Ciara Power --- app/test/test_cryptodev_blockcipher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_cryptodev_blockcipher.c b/app/test/test_cryptodev_blockcipher.c index 0ddc5e3583..135e57b9fa 100644 --- a/app/test/test_cryptodev_blockcipher.c +++ b/app/test/test_cryptodev_blockcipher.c @@ -103,7 +103,7 @@ test_blockcipher_one_case(const struct blockcipher_test_case *t, if (t->feature_mask & BLOCKCIPHER_TEST_FEATURE_SESSIONLESS) { if (!(feat_flags & RTE_CRYPTODEV_FF_SYM_SESSIONLESS)) { - printf("Device doesn't support sesionless operations " + printf("Device doesn't support sessionless operations " "Test Skipped.\n"); snprintf(test_msg, BLOCKCIPHER_TEST_MSG_LEN, "SKIPPED"); -- 2.20.1