summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2023-03-24 15:24:05 +1100
committerDamien Miller <djm@mindrot.org>2023-03-24 15:26:27 +1100
commit4974293899a068133e976f81d6693670d2b576ca (patch)
tree622169980bdf73cdb038db9f93f2cd344b297f0d /regress
parent3c527d55f906e6970d17c4cab6db90ae9e013235 (diff)
downloadopenssh-git-4974293899a068133e976f81d6693670d2b576ca.tar.gz
don't use obsolete ERR_load_CRYPTO_strings()
OpenSSL (and elsewhere in OpenSSH) uses ERR_load_crypto_strings()
Diffstat (limited to 'regress')
-rw-r--r--regress/unittests/test_helper/test_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/unittests/test_helper/test_helper.c b/regress/unittests/test_helper/test_helper.c
index 6461d7ff..e23128aa 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 */