[openssh-commits] [openssh] 01/01: fix compile for openssl 1.0.x w/ --with-ssl-engine

git+noreply at mindrot.org git+noreply at mindrot.org
Mon Oct 22 11:23:54 AEDT 2018


This is an automated email from the git hooks/post-receive script.

djm pushed a commit to branch V_7_9
in repository openssh.

commit 631165f6c43d230df9174423aeb19fcf09a67ef4
Author: Damien Miller <djm at mindrot.org>
Date:   Mon Oct 22 11:22:50 2018 +1100

    fix compile for openssl 1.0.x w/ --with-ssl-engine
    
    bz#2921, patch from cotequeiroz
---
 openbsd-compat/openssl-compat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openbsd-compat/openssl-compat.c b/openbsd-compat/openssl-compat.c
index 8b4a3627..590b66d1 100644
--- a/openbsd-compat/openssl-compat.c
+++ b/openbsd-compat/openssl-compat.c
@@ -76,7 +76,7 @@ ssh_OpenSSL_add_all_algorithms(void)
 	ENGINE_load_builtin_engines();
 	ENGINE_register_all_complete();
 
-#if OPENSSL_VERSION_NUMBER < 0x10001000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L
 	OPENSSL_config(NULL);
 #else
 	OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS |

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list