diff --git a/apps/apps.h b/apps/apps.h index 2da89e2112e6f68af12d8b91e2882529f6e67af3..cd31473173bedf0741952186b21a4fd13f24441b 100644 --- a/apps/apps.h +++ b/apps/apps.h @@ -122,15 +122,15 @@ extern BIO *bio_err; # ifdef _O_BINARY # define apps_startup() \ _fmode=_O_BINARY; do_pipe_sig(); CRYPTO_malloc_init(); \ - SSLeay_add_all_algorithms(); ENGINE_load_builtin_engines() + OpenSSL_add_all_algorithms(); ENGINE_load_builtin_engines() # else # define apps_startup() \ _fmode=O_BINARY; do_pipe_sig(); CRYPTO_malloc_init(); \ - SSLeay_add_all_algorithms(); ENGINE_load_builtin_engines() + OpenSSL_add_all_algorithms(); ENGINE_load_builtin_engines() # endif # else # define apps_startup() \ - do_pipe_sig(); SSLeay_add_all_algorithms(); \ + do_pipe_sig(); OpenSSL_add_all_algorithms(); \ ENGINE_load_builtin_engines() # endif #endif