]> feistymeow.org Git - feisty_meow.git/commitdiff
minor switch to our NULL_POINTER symbol
authorFred Hamster <fred@gruntose.com>
Fri, 27 Feb 2026 00:47:28 +0000 (19:47 -0500)
committerFred Hamster <fred@gruntose.com>
Fri, 27 Feb 2026 00:47:28 +0000 (19:47 -0500)
nucleus/library/crypto/ssl_init.cpp

index 6e17060b743e1eba5427cc9b917844385d253c2e..d7d617cd51d9d74b7ebb70e4446f191452b14d8a 100644 (file)
@@ -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