]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
unbreak compilation with --with-ssl-engine
authorDamien Miller <djm@mindrot.org>
Tue, 16 Oct 2018 21:12:02 +0000 (08:12 +1100)
committerDamien Miller <djm@mindrot.org>
Tue, 16 Oct 2018 21:12:02 +0000 (08:12 +1100)
Missing last argument to OPENSSL_init_crypto()

openbsd-compat/openssl-compat.c

index 762358f06e3e90a26d0ed066c0eeecba3e2bacc7..8b4a36274606368c42eafbdf5a47f455f663857a 100644 (file)
@@ -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