summaryrefslogtreecommitdiffstats
path: root/crypto/cms/cms_cd.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-09-24 11:42:23 +0200
committerMatt Caswell <matt@openssl.org>2020-10-01 10:25:20 +0200
commitd8652be06e2778e8898453a391deb7253e1a35a2 (patch)
treefe40e22edb39642aa7ae633320c1900388f2e7ee /crypto/cms/cms_cd.c
parentPerl util to do with_libctx renaming (diff)
downloadopenssl-d8652be06e2778e8898453a391deb7253e1a35a2.tar.xz
openssl-d8652be06e2778e8898453a391deb7253e1a35a2.zip
Run the withlibctx.pl script
Automatically rename all instances of _with_libctx() to _ex() as per our coding style. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12970)
Diffstat (limited to 'crypto/cms/cms_cd.c')
-rw-r--r--crypto/cms/cms_cd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cms/cms_cd.c b/crypto/cms/cms_cd.c
index c596eab2c2..2abc867a59 100644
--- a/crypto/cms/cms_cd.c
+++ b/crypto/cms/cms_cd.c
@@ -36,7 +36,7 @@ CMS_ContentInfo *cms_CompressedData_create(int comp_nid, OPENSSL_CTX *libctx,
CMS_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
return NULL;
}
- cms = CMS_ContentInfo_new_with_libctx(libctx, propq);
+ cms = CMS_ContentInfo_new_ex(libctx, propq);
if (cms == NULL)
return NULL;