summaryrefslogtreecommitdiffstats
path: root/crypto/context.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2022-05-23 09:30:36 +0200
committerRichard Levitte <levitte@openssl.org>2022-05-23 09:30:36 +0200
commit04ab4cdd5cf073b7f2cf629bf6c5996ecf289ea6 (patch)
treeeeefe6c998d5ff0810b56be280080b6da2098b96 /crypto/context.c
parent8a2b4ac740bcbb0678fc1e1cdbf625c010f84cc8 (diff)
Drop the last ossl_init_casecmp() call
This was missed in an earlier merge that removed it. Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18380)
Diffstat (limited to 'crypto/context.c')
-rw-r--r--crypto/context.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/context.c b/crypto/context.c
index 4fef24cadd..bdfc4d02a3 100644
--- a/crypto/context.c
+++ b/crypto/context.c
@@ -151,8 +151,7 @@ static CRYPTO_THREAD_LOCAL default_context_thread_local;
DEFINE_RUN_ONCE_STATIC(default_context_do_init)
{
return CRYPTO_THREAD_init_local(&default_context_thread_local, NULL)
- && context_init(&default_context_int)
- && ossl_init_casecmp();
+ && context_init(&default_context_int);
}
void ossl_lib_ctx_default_deinit(void)