don't use obsolete ERR_load_CRYPTO_strings()

OpenSSL (and elsewhere in OpenSSH) uses ERR_load_crypto_strings()
This commit is contained in:
Damien Miller 2023-03-24 15:24:05 +11:00
parent 3c527d55f9
commit 4974293899
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View 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 */