projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c77179
)
Do not call ENGINE_setup_bsd_cryptodev() when OPENSSL_NO_ENGINE is defined.
author
Richard Levitte
<levitte@openssl.org>
Sat, 5 Apr 2003 21:21:26 +0000
(21:21 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Sat, 5 Apr 2003 21:21:26 +0000
(21:21 +0000)
PR: 564
crypto/evp/c_all.c
patch
|
blob
|
history
diff --git
a/crypto/evp/c_all.c
b/crypto/evp/c_all.c
index 19737f39f634d35674b1040f4149e31d3da56ac8..879d84ae79baa3f991557a4c708356cc560a4319 100644
(file)
--- a/
crypto/evp/c_all.c
+++ b/
crypto/evp/c_all.c
@@
-74,7
+74,9
@@
void OPENSSL_add_all_algorithms_noconf(void)
{
OpenSSL_add_all_ciphers();
OpenSSL_add_all_digests();
-#if defined(__OpenBSD__) || defined(__FreeBSD__)
+#ifndef OPENSSL_NO_ENGINE
+# if defined(__OpenBSD__) || defined(__FreeBSD__)
ENGINE_setup_bsd_cryptodev();
+# endif
#endif
}