summaryrefslogtreecommitdiffstats
path: root/crypto/core_algorithm.c
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-03-10 19:37:02 +1000
committerPauli <ppzgs1@gmail.com>2021-03-12 09:14:00 +1000
commit8f08957674c2015fad72ea240bbff4564b83d518 (patch)
treed0edc404938f970d973b8b2189df0a7287d5b3b2 /crypto/core_algorithm.c
parent3c5ce1ce81bfcf84a64c93c74eb40c90a2a49c54 (diff)
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.c2
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);
}