summaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2001-09-25 20:35:01 +0000
committerGeoff Thorpe <geoff@openssl.org>2001-09-25 20:35:01 +0000
commit6dc5d570d09dfc4f2b4595f089f2a7536d82ad72 (patch)
tree265e29b7dffe88a7eb4b297199b27e0a683a0288 /apps/apps.h
parentcb78486d97328121add07df466b7578076650a90 (diff)
Make necessary tweaks to apps/ files due to recent ENGINE surgery. See
crypto/engine/README for details.
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/apps.h b/apps/apps.h
index 634775d35d..810710909c 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -126,21 +126,21 @@ extern BIO *bio_err;
# ifdef _O_BINARY
# define apps_startup() \
do { _fmode=_O_BINARY; do_pipe_sig(); CRYPTO_malloc_init(); \
- ERR_load_crypto_strings(); \
- OpenSSL_add_all_algorithms(); ENGINE_load_builtin_engines(); \
- setup_ui_method(); } while(0)
+ ERR_load_crypto_strings(); OpenSSL_add_all_algorithms(); \
+ ENGINE_load_builtin_engines(); ENGINE_register_all_complete(); \
+ setup_ui_method(); } while(0)
# else
# define apps_startup() \
do { _fmode=O_BINARY; do_pipe_sig(); CRYPTO_malloc_init(); \
- ERR_load_crypto_strings(); \
- OpenSSL_add_all_algorithms(); ENGINE_load_builtin_engines(); \
- setup_ui_method(); } while(0)
+ ERR_load_crypto_strings(); OpenSSL_add_all_algorithms(); \
+ ENGINE_load_builtin_engines(); ENGINE_register_all_complete(); \
+ setup_ui_method(); } while(0)
# endif
# else
# define apps_startup() \
do { do_pipe_sig(); OpenSSL_add_all_algorithms(); \
- ERR_load_crypto_strings(); \
- ENGINE_load_builtin_engines(); setup_ui_method(); } while(0)
+ ERR_load_crypto_strings(); ENGINE_load_builtin_engines(); \
+ ENGINE_register_all_complete(); setup_ui_method(); } while(0)
# endif
# define apps_shutdown() \
do { destroy_ui_method(); EVP_cleanup(); \