From aa1f5b35810356d6f6b4daf9a3b2181f1c3c1fc7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Thu, 14 Feb 2002 13:52:11 +0000 Subject: [PATCH] don't call OPENSSL_config(), this does not make any sense during "make test" --- crypto/evp/evp_test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/evp/evp_test.c b/crypto/evp/evp_test.c index ae14356dfe..bf0fc3692b 100644 --- a/crypto/evp/evp_test.c +++ b/crypto/evp/evp_test.c @@ -310,7 +310,9 @@ int main(int argc,char **argv) OpenSSL_add_all_digests(); /* Load all compiled-in ENGINEs */ ENGINE_load_builtin_engines(); +#if 0 OPENSSL_config(); +#endif /* Register all available ENGINE implementations of ciphers and digests. * This could perhaps be changed to "ENGINE_register_all_complete()"? */ ENGINE_register_all_ciphers(); -- 2.25.1