]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
don't use obsolete ERR_load_CRYPTO_strings()
authorDamien Miller <djm@mindrot.org>
Fri, 24 Mar 2023 04:24:05 +0000 (15:24 +1100)
committerDamien Miller <djm@mindrot.org>
Fri, 24 Mar 2023 04:26:27 +0000 (15:26 +1100)
OpenSSL (and elsewhere in OpenSSH) uses ERR_load_crypto_strings()

regress/unittests/test_helper/test_helper.c

index 6461d7ffc642f4b0ffd67a5de87724494c931df6..e23128aa5599548f3a41f77470856889f434423e 100644 (file)
@@ -131,7 +131,7 @@ main(int argc, char **argv)
 
        seed_rng();
 #ifdef WITH_OPENSSL
-       ERR_load_CRYPTO_strings();
+       ERR_load_crypto_strings();
 #endif
 
        /* Handle systems without __progname */