diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-02-24 09:07:52 +0100 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2021-03-18 08:35:10 +0100 |
commit | e4bec869104cf4ba51cbb1effb0f5437e327ecd8 (patch) | |
tree | 7b80aadaea2dce5e0aad42d37abc345d464995e0 /crypto/dsa | |
parent | TS and CMS CAdES-BES: Refactor check_signing_certs() funcs into common ESS func (diff) | |
download | openssl-e4bec869104cf4ba51cbb1effb0f5437e327ecd8.tar.xz openssl-e4bec869104cf4ba51cbb1effb0f5437e327ecd8.zip |
Fix external symbols for crypto_*
Partial fix for #12964
This adds ossl_ names for symbols related to crypto_*
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'crypto/dsa')
-rw-r--r-- | crypto/dsa/dsa_lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/dsa/dsa_lib.c b/crypto/dsa/dsa_lib.c index 5de633e11e..5512b99ef1 100644 --- a/crypto/dsa/dsa_lib.c +++ b/crypto/dsa/dsa_lib.c @@ -169,7 +169,8 @@ static DSA *dsa_new_intern(ENGINE *engine, OSSL_LIB_CTX *libctx) ret->flags = ret->meth->flags & ~DSA_FLAG_NON_FIPS_ALLOW; #ifndef FIPS_MODULE - if (!crypto_new_ex_data_ex(libctx, CRYPTO_EX_INDEX_DSA, ret, &ret->ex_data)) + if (!ossl_crypto_new_ex_data_ex(libctx, CRYPTO_EX_INDEX_DSA, ret, + &ret->ex_data)) goto err; #endif |