From 69ba1c1067756922fc879e5a166d414b48481890 Mon Sep 17 00:00:00 2001 From: Fred Hamster Date: Thu, 26 Feb 2026 19:47:28 -0500 Subject: [PATCH] minor switch to our NULL_POINTER symbol --- nucleus/library/crypto/ssl_init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nucleus/library/crypto/ssl_init.cpp b/nucleus/library/crypto/ssl_init.cpp index 6e17060b..d7d617cd 100644 --- a/nucleus/library/crypto/ssl_init.cpp +++ b/nucleus/library/crypto/ssl_init.cpp @@ -57,7 +57,7 @@ ssl_init::ssl_init() // new code needed because blowfish is considered legacy code now. ugh. OSSL_PROVIDER *legacy_provider = OSSL_PROVIDER_load(NULL_POINTER, "legacy"); // also load the default provider or the standard, still accepted, algorithms will not be available. - OSSL_PROVIDER *default_provider = OSSL_PROVIDER_load(NULL, "default"); + OSSL_PROVIDER *default_provider = OSSL_PROVIDER_load(NULL_POINTER, "default"); //hmmm: do we need to clean up these providers? #ifdef DEBUG_SSL -- 2.43.0