aboutsummaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-01-23 13:36:57 +0000
committerBodo Möller <bodo@openssl.org>2001-01-23 13:36:57 +0000
commita25b265d27b78f3b9eaf224e74dec98c6bb94b56 (patch)
tree9e2c907768758d18525b0196828c33944c06be77 /apps/apps.h
parentd0a8af61b1ce0a66e2e53ab027122bd1087feb73 (diff)
downloadopenssl-a25b265d27b78f3b9eaf224e74dec98c6bb94b56.tar.gz
Use OpenSSL_add_all_algorithms instead of the backwards compatibility
alias SSLeay_add_all_algorithms
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/apps.h b/apps/apps.h
index 2da89e2112..cd31473173 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