summaryrefslogtreecommitdiffstats
path: root/test/algorithmid_test.c
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-03-02 22:41:24 +1000
committerPauli <ppzgs1@gmail.com>2021-03-12 08:27:11 +1000
commitaf6171b35aa4d066f6834c4fb917372b81d92489 (patch)
tree73e8b3bcc988005f601e1bfa63503ebcd91b8441 /test/algorithmid_test.c
parentd38b6ae96fa810891e38d2f952ff7fe857be80c9 (diff)
test: support params arguments to init functions
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14383)
Diffstat (limited to 'test/algorithmid_test.c')
-rw-r--r--test/algorithmid_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/algorithmid_test.c b/test/algorithmid_test.c
index b1b579b40d..ae7a49f54b 100644
--- a/test/algorithmid_test.c
+++ b/test/algorithmid_test.c
@@ -162,7 +162,7 @@ static int test_x509_sig_aid(X509 *eecert, const char *ee_filename,
if (!TEST_ptr(mdctx = EVP_MD_CTX_new())
|| !TEST_true(EVP_DigestVerifyInit_ex(mdctx, &pctx,
OBJ_nid2sn(dig_nid),
- NULL, NULL, pkey))) {
+ NULL, NULL, pkey, NULL))) {
TEST_info("Couldn't initialize a DigestVerify operation with "
"pkey type %s and hash type %s",
OBJ_nid2sn(pkey_nid), OBJ_nid2sn(dig_nid));