提交 db744f89 编写于 作者: G Geoff Thorpe

Fix a typo in the preprocessor logic in eng_list.c that had left RSA, DSA,

and DH all conditional upon OPENSSL_NO_RSA.
上级 e059b19d
...@@ -591,10 +591,10 @@ int ENGINE_cpy(ENGINE *dest, const ENGINE *src) ...@@ -591,10 +591,10 @@ int ENGINE_cpy(ENGINE *dest, const ENGINE *src)
#ifndef OPENSSL_NO_RSA #ifndef OPENSSL_NO_RSA
ENGINE_set_RSA(dest, ENGINE_get_RSA(src)) && ENGINE_set_RSA(dest, ENGINE_get_RSA(src)) &&
#endif #endif
#ifndef OPENSSL_NO_RSA #ifndef OPENSSL_NO_DSA
ENGINE_set_DSA(dest, ENGINE_get_DSA(src)) && ENGINE_set_DSA(dest, ENGINE_get_DSA(src)) &&
#endif #endif
#ifndef OPENSSL_NO_RSA #ifndef OPENSSL_NO_DH
ENGINE_set_DH(dest, ENGINE_get_DH(src)) && ENGINE_set_DH(dest, ENGINE_get_DH(src)) &&
#endif #endif
ENGINE_set_RAND(dest, ENGINE_get_RAND(src)) && ENGINE_set_RAND(dest, ENGINE_get_RAND(src)) &&
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册