[openssh-commits] [openssh] 01/01: unbreak compilation with --with-ssl-engine
git+noreply at mindrot.org
git+noreply at mindrot.org
Wed Oct 17 08:22:52 AEDT 2018
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 08300c211409c212e010fe2e2f2883e573a04ce2
Author: Damien Miller <djm at mindrot.org>
Date: Wed Oct 17 08:12:02 2018 +1100
unbreak compilation with --with-ssl-engine
Missing last argument to OPENSSL_init_crypto()
---
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 762358f0..8b4a3627 100644
--- a/openbsd-compat/openssl-compat.c
+++ b/openbsd-compat/openssl-compat.c
@@ -80,7 +80,7 @@ ssh_OpenSSL_add_all_algorithms(void)
OPENSSL_config(NULL);
#else
OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS |
- OPENSSL_INIT_ADD_ALL_DIGESTS | OPENSSL_INIT_LOAD_CONFIG);
+ OPENSSL_INIT_ADD_ALL_DIGESTS | OPENSSL_INIT_LOAD_CONFIG, NULL);
#endif
}
#endif
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list