From: Damien Miller Date: Tue, 16 Oct 2018 21:12:02 +0000 (+1100) Subject: unbreak compilation with --with-ssl-engine X-Git-Tag: V_7_9_P1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08300c211409c212e010fe2e2f2883e573a04ce2;p=thirdparty%2Fopenssh-portable.git unbreak compilation with --with-ssl-engine Missing last argument to OPENSSL_init_crypto() --- 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) 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