summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2018-10-17 08:12:02 +1100
committerDamien Miller <djm@mindrot.org>2018-10-17 08:12:02 +1100
commit08300c211409c212e010fe2e2f2883e573a04ce2 (patch)
tree25d5d7f9c665354ed06f6511c8236c1250d35432
parent1673274aee67ce0eb6f00578b6f3d2bcbd58f937 (diff)
unbreak compilation with --with-ssl-engine
Missing last argument to OPENSSL_init_crypto()
-rw-r--r--openbsd-compat/openssl-compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsd-compat/openssl-compat.c b/openbsd-compat/openssl-compat.c
index 762358f06..8b4a36274 100644
--- a/openbsd-compat/openssl-compat.c
+++ b/openbsd-compat/openssl-compat.c
@@ -80,7 +80,7 @@ ssh_OpenSSL_add_all_algorithms(void)
80 OPENSSL_config(NULL); 80 OPENSSL_config(NULL);
81#else 81#else
82 OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS | 82 OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS |
83 OPENSSL_INIT_ADD_ALL_DIGESTS | OPENSSL_INIT_LOAD_CONFIG); 83 OPENSSL_INIT_ADD_ALL_DIGESTS | OPENSSL_INIT_LOAD_CONFIG, NULL);
84#endif 84#endif
85} 85}
86#endif 86#endif