aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/cms/cms_sd.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-03-09 14:49:27 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-03-18 17:52:38 +1000
commit3022b7f40407aa9d50d1e4193e22a092b23c7717 (patch)
treec96acbae2ec8667588365eb355f667c6e5df95e1 /crypto/cms/cms_sd.c
parent78715dcc310e27a8c862ecdf3a956c1cfdc0f2c1 (diff)
downloadopenssl-3022b7f40407aa9d50d1e4193e22a092b23c7717.tar.gz
Rename CMS_si_check_attributes to ossl_cms_si_check_attributes
Partial fix for #12964 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'crypto/cms/cms_sd.c')
-rw-r--r--crypto/cms/cms_sd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/cms/cms_sd.c b/crypto/cms/cms_sd.c
index 0c3f04388b..a57943513e 100644
--- a/crypto/cms/cms_sd.c
+++ b/crypto/cms/cms_sd.c
@@ -734,7 +734,7 @@ int CMS_SignerInfo_sign(CMS_SignerInfo *si)
goto err;
}
- if (!CMS_si_check_attributes(si))
+ if (!ossl_cms_si_check_attributes(si))
goto err;
if (si->pctx)
@@ -829,7 +829,7 @@ int CMS_SignerInfo_verify(CMS_SignerInfo *si)
return -1;
}
- if (!CMS_si_check_attributes(si))
+ if (!ossl_cms_si_check_attributes(si))
return -1;
name = OBJ_nid2sn(OBJ_obj2nid(si->digestAlgorithm->algorithm));