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:
e059b19
)
Fix a typo in the preprocessor logic in eng_list.c that had left RSA, DSA,
author
Geoff Thorpe
<geoff@openssl.org>
Fri, 14 Sep 2001 18:23:31 +0000
(18:23 +0000)
committer
Geoff Thorpe
<geoff@openssl.org>
Fri, 14 Sep 2001 18:23:31 +0000
(18:23 +0000)
and DH all conditional upon OPENSSL_NO_RSA.
crypto/engine/eng_list.c
patch
|
blob
|
history
diff --git
a/crypto/engine/eng_list.c
b/crypto/engine/eng_list.c
index ce45b14df38c555aa41b6d4dbc733fae83fbdb40..ec806984aba27d61d41cab3bf1ea3b526dea0b7a 100644
(file)
--- a/
crypto/engine/eng_list.c
+++ b/
crypto/engine/eng_list.c
@@
-591,10
+591,10
@@
int ENGINE_cpy(ENGINE *dest, const ENGINE *src)
#ifndef OPENSSL_NO_RSA
ENGINE_set_RSA(dest, ENGINE_get_RSA(src)) &&
#endif
-#ifndef OPENSSL_NO_
R
SA
+#ifndef OPENSSL_NO_
D
SA
ENGINE_set_DSA(dest, ENGINE_get_DSA(src)) &&
#endif
-#ifndef OPENSSL_NO_
RSA
+#ifndef OPENSSL_NO_
DH
ENGINE_set_DH(dest, ENGINE_get_DH(src)) &&
#endif
ENGINE_set_RAND(dest, ENGINE_get_RAND(src)) &&