From c4e50ef086a19cb6652de4c6f58f4ae85c11b547 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Thu, 23 Dec 2021 09:37:09 -0800 Subject: [PATCH] fix for libz test with pkcs7 --- wolfcrypt/test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index ecbe0e3a3..6e7915dbe 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -34259,7 +34259,7 @@ static int pkcs7signed_run_SingleShotVectors( /* compare decompressed to expected */ if (((word32)ret != testVectors[i].contentSz) || - XMEMCMP(out, testVectors[i].content, ret)) { + XMEMCMP(out, testVectors[i].content, ret)) ERROR_OUT(-12562, out); } #ifndef NO_PKCS7_ENCRYPTED_DATA