diff options
author | Matt Caswell <matt@openssl.org> | 2021-05-26 18:18:13 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-06-05 09:39:10 +0200 |
commit | c6313780586f94b0542f55c3ffa399f5ad2c7297 (patch) | |
tree | 4ee7a22fbbe0e507a1b974b5e2e45778836fed09 /apps | |
parent | Use the new ASN.1 libctx aware functions in CMS (diff) | |
download | openssl-c6313780586f94b0542f55c3ffa399f5ad2c7297.tar.xz openssl-c6313780586f94b0542f55c3ffa399f5ad2c7297.zip |
Use the new ASN.1 libctx aware capabilities in CMP
Make sure we pass the libctx/propq around everywhere that we need it to
ensure we get provider keys when needed.
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15591)
Diffstat (limited to 'apps')
-rw-r--r-- | apps/cmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/cmp.c b/apps/cmp.c index 03530f2584..dfd2981425 100644 --- a/apps/cmp.c +++ b/apps/cmp.c @@ -729,7 +729,7 @@ static OSSL_CMP_MSG *read_PKIMESSAGE(char **filenames) file = *filenames; *filenames = next_item(file); - ret = OSSL_CMP_MSG_read(file); + ret = OSSL_CMP_MSG_read(file, app_get0_libctx(), app_get0_propq()); if (ret == NULL) CMP_err1("cannot read PKIMessage from file '%s'", file); return ret; |