From: Tomas Mraz Date: Wed, 14 Jul 2021 13:41:00 +0000 (+0200) Subject: acvp_test: Fix incorrect parenthesis X-Git-Tag: openssl-3.0.0-beta2~62 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59f66d8cf98a2c11404826bfecd7d6f210ddc048;p=thirdparty%2Fopenssl.git acvp_test: Fix incorrect parenthesis Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/16076) --- diff --git a/test/acvp_test.c b/test/acvp_test.c index 05a328a6adc..ce0ef66b8bc 100644 --- a/test/acvp_test.c +++ b/test/acvp_test.c @@ -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: