From 0411609e921425cc1953e32e3b9b37723d5e0459 Mon Sep 17 00:00:00 2001 From: beck <> Date: Mon, 19 Mar 2018 14:07:18 +0000 Subject: correct funciton prototype spotted by anton@ --- src/lib/libcrypto/crypto_init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/crypto_init.c b/src/lib/libcrypto/crypto_init.c index ed2b5d4810..08fb55ffd5 100644 --- a/src/lib/libcrypto/crypto_init.c +++ b/src/lib/libcrypto/crypto_init.c @@ -25,8 +25,8 @@ #include #include "cryptlib.h" -int OpenSSL_config(char *); -int OpenSSL_no_config(char *); +int OpenSSL_config(const char *); +int OpenSSL_no_config(void); static pthread_t crypto_init_thread; @@ -52,7 +52,7 @@ OPENSSL_init_crypto(uint64_t opts, const void *settings) return 0; if ((opts & OPENSSL_INIT_NO_LOAD_CONFIG) && - (OpenSSL_no_config(NULL) == 0)) + (OpenSSL_no_config() == 0)) return 0; if ((opts & OPENSSL_INIT_LOAD_CONFIG) && -- cgit v1.2.3-55-g6feb