diff options
author | Pauli <ppzgs1@gmail.com> | 2021-03-10 10:37:02 +0100 |
---|---|---|
committer | Pauli <ppzgs1@gmail.com> | 2021-03-12 00:14:00 +0100 |
commit | 8f08957674c2015fad72ea240bbff4564b83d518 (patch) | |
tree | d0edc404938f970d973b8b2189df0a7287d5b3b2 /crypto/core_algorithm.c | |
parent | doc: describe the return from ossl_provider_forall_loaded() (diff) | |
download | openssl-8f08957674c2015fad72ea240bbff4564b83d518.tar.xz openssl-8f08957674c2015fad72ea240bbff4564b83d518.zip |
rename ossl_provider_forall_loaded to ossl_provider_doall_activated
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/14489)
Diffstat (limited to 'crypto/core_algorithm.c')
-rw-r--r-- | crypto/core_algorithm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/core_algorithm.c b/crypto/core_algorithm.c index 6222c5364d..3fcb2226c7 100644 --- a/crypto/core_algorithm.c +++ b/crypto/core_algorithm.c @@ -107,7 +107,7 @@ void ossl_algorithm_do_all(OSSL_LIB_CTX *libctx, int operation_id, cbdata.data = data; if (provider == NULL) - ossl_provider_forall_loaded(libctx, algorithm_do_this, &cbdata); + ossl_provider_doall_activated(libctx, algorithm_do_this, &cbdata); else algorithm_do_this(provider, &cbdata); } |