summaryrefslogtreecommitdiffstats
path: root/crypto/ct
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-03-02 20:21:00 +1000
committerPauli <ppzgs1@gmail.com>2021-03-12 08:27:11 +1000
commit1666eec83722ff9e2c80ec8fe86c71b317959591 (patch)
treeab7a56f52d190c8460a75ee11c0c533387b48ca8 /crypto/ct
parentee22fca5cec53c9775cbdf1c44677ba5ee9b5049 (diff)
misc: other init function param additions
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14383)
Diffstat (limited to 'crypto/ct')
-rw-r--r--crypto/ct/ct_vfy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ct/ct_vfy.c b/crypto/ct/ct_vfy.c
index 2ffca19400..0226dbf0c5 100644
--- a/crypto/ct/ct_vfy.c
+++ b/crypto/ct/ct_vfy.c
@@ -123,7 +123,7 @@ int SCT_CTX_verify(const SCT_CTX *sctx, const SCT *sct)
goto end;
if (!EVP_DigestVerifyInit_ex(ctx, NULL, "SHA2-256", sctx->libctx,
- sctx->propq, sctx->pkey))
+ sctx->propq, sctx->pkey, NULL))
goto end;
if (!sct_ctx_update(ctx, sctx, sct))