From: Damien Miller Date: Fri, 24 Mar 2023 04:24:05 +0000 (+1100) Subject: don't use obsolete ERR_load_CRYPTO_strings() X-Git-Tag: V_9_4_P1~135 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4974293899a068133e976f81d6693670d2b576ca;p=thirdparty%2Fopenssh-portable.git don't use obsolete ERR_load_CRYPTO_strings() OpenSSL (and elsewhere in OpenSSH) uses ERR_load_crypto_strings() --- diff --git a/regress/unittests/test_helper/test_helper.c b/regress/unittests/test_helper/test_helper.c index 6461d7ffc..e23128aa5 100644 --- a/regress/unittests/test_helper/test_helper.c +++ b/regress/unittests/test_helper/test_helper.c @@ -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 */