diff options
author | beck <> | 2002-05-15 02:29:21 +0000 |
---|---|---|
committer | beck <> | 2002-05-15 02:29:21 +0000 |
commit | b64270d1e45fe7f3241e4c9b6ce60d5ac89bc2e9 (patch) | |
tree | fa27cf82a1250b64ed3bf5f4a18c7354d470bbcc /src/lib/libcrypto/evp/c_all.c | |
parent | e471e1ea98d673597b182ea85f29e30c97cd08b5 (diff) | |
download | openbsd-b64270d1e45fe7f3241e4c9b6ce60d5ac89bc2e9.tar.gz openbsd-b64270d1e45fe7f3241e4c9b6ce60d5ac89bc2e9.tar.bz2 openbsd-b64270d1e45fe7f3241e4c9b6ce60d5ac89bc2e9.zip |
OpenSSL 0.9.7 stable 2002 05 08 merge
Diffstat (limited to 'src/lib/libcrypto/evp/c_all.c')
-rw-r--r-- | src/lib/libcrypto/evp/c_all.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/c_all.c b/src/lib/libcrypto/evp/c_all.c index 1e185830a3..3d390dfbf1 100644 --- a/src/lib/libcrypto/evp/c_all.c +++ b/src/lib/libcrypto/evp/c_all.c | |||
@@ -60,8 +60,16 @@ | |||
60 | #include "cryptlib.h" | 60 | #include "cryptlib.h" |
61 | #include <openssl/evp.h> | 61 | #include <openssl/evp.h> |
62 | 62 | ||
63 | #undef OpenSSL_add_all_algorithms | ||
64 | |||
63 | void OpenSSL_add_all_algorithms(void) | 65 | void OpenSSL_add_all_algorithms(void) |
64 | { | 66 | { |
67 | OPENSSL_add_all_algorithms_noconf(); | ||
68 | } | ||
69 | |||
70 | void OPENSSL_add_all_algorithms_noconf(void) | ||
71 | { | ||
65 | OpenSSL_add_all_ciphers(); | 72 | OpenSSL_add_all_ciphers(); |
66 | OpenSSL_add_all_digests(); | 73 | OpenSSL_add_all_digests(); |
67 | } | 74 | ENGINE_setup_openbsd(); |
75 | } | ||