[openssh-commits] [openssh] 03/03: don't use obsolete ERR_load_CRYPTO_strings()
    git+noreply at mindrot.org 
    git+noreply at mindrot.org
       
    Fri Mar 24 15:26:36 AEDT 2023
    
    
  
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 4974293899a068133e976f81d6693670d2b576ca
Author: Damien Miller <djm at mindrot.org>
Date:   Fri Mar 24 15:24:05 2023 +1100
    don't use obsolete ERR_load_CRYPTO_strings()
    
    OpenSSL (and elsewhere in OpenSSH) uses ERR_load_crypto_strings()
---
 regress/unittests/test_helper/test_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
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 */
-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
    
    
More information about the openssh-commits
mailing list