From: Bodo Möller Date: Thu, 14 Feb 2002 13:51:20 +0000 (+0000) Subject: don't call OPENSSL_config(), this does not make any sense during "make test" X-Git-Tag: OpenSSL-engine-0_9_6c^2^2~8 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6cc3700314e0e496c1bab585ddff99e13dcdbc4c;p=oweals%2Fopenssl.git don't call OPENSSL_config(), this does not make any sense during "make test" --- 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();