acvp_test: Fix incorrect parenthesis
authorTomas Mraz <tomas@openssl.org>
Wed, 14 Jul 2021 13:41:00 +0000 (15:41 +0200)
committerTomas Mraz <tomas@openssl.org>
Fri, 16 Jul 2021 09:23:17 +0000 (11:23 +0200)
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16076)

test/acvp_test.c

index 05a328a6adcad071bc83daf9bfd292bb44fa2b58..ce0ef66b8bccfadce78056caca55f1583a61087b 100644 (file)
@@ -1227,10 +1227,10 @@ static int rsa_sigver_test(int id)
         || !TEST_ptr(md_ctx = EVP_MD_CTX_new())
         || !TEST_true(EVP_DigestVerifyInit_ex(md_ctx, &pkey_ctx,
                                               tst->digest_alg, libctx, NULL,
-                                              pkey, NULL)
+                                              pkey, NULL))
         || !TEST_true(EVP_PKEY_CTX_set_params(pkey_ctx, params))
         || !TEST_int_eq(EVP_DigestVerify(md_ctx, tst->sig, tst->sig_len,
-                                         tst->msg, tst->msg_len), tst->pass)))
+                                         tst->msg, tst->msg_len), tst->pass))
         goto err;
     ret = 1;
 err: