diff options
author | Pauli <ppzgs1@gmail.com> | 2021-03-02 22:41:24 +1000 |
---|---|---|
committer | Pauli <ppzgs1@gmail.com> | 2021-03-12 08:27:11 +1000 |
commit | af6171b35aa4d066f6834c4fb917372b81d92489 (patch) | |
tree | 73e8b3bcc988005f601e1bfa63503ebcd91b8441 /test/evp_extra_test.c | |
parent | d38b6ae96fa810891e38d2f952ff7fe857be80c9 (diff) | |
download | openssl-new-af6171b35aa4d066f6834c4fb917372b81d92489.tar.gz |
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/evp_extra_test.c')
-rw-r--r-- | test/evp_extra_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 62840d0d19..acba9819e6 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -1888,7 +1888,7 @@ static int test_EVP_PKEY_CTX_get_set_params(EVP_PKEY *pkey) mdctx = EVP_MD_CTX_new(); if (!TEST_ptr(mdctx) || !TEST_true(EVP_DigestSignInit_ex(mdctx, NULL, "SHA1", NULL, NULL, - pkey))) + pkey, NULL))) goto err; /* |