From: Fred Hamster Date: Fri, 27 Feb 2026 00:47:28 +0000 (-0500) Subject: minor switch to our NULL_POINTER symbol X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=69ba1c1067756922fc879e5a166d414b48481890;p=feisty_meow.git minor switch to our NULL_POINTER symbol --- 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