summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-02 19:41:41 +0100
committerMatt Caswell <matt@openssl.org>2016-04-03 00:23:56 +0100
commita517f7fcdc85000b682b91d4cb2ab602f6f7d050 (patch)
tree39ecc74cc8fc7e97103ef787a0669f7ae219490a /crypto/engine
parenta60e6a7af4191be89e67b925c4ee35a1f7cdd1d0 (diff)
Various DSA opacity fixups
Numerous fixups based on feedback of the DSA opacity changes. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Stephen Henson <steve@openssl.org>
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_cryptodev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c
index 00828702db..bb2ce9efa9 100644
--- a/crypto/engine/eng_cryptodev.c
+++ b/crypto/engine/eng_cryptodev.c
@@ -1682,7 +1682,7 @@ void engine_load_cryptodev_internal(void)
#ifndef OPENSSL_NO_DSA
cryptodev_dsa = DSA_meth_dup(DSA_OpenSSL());
if (cryptodev_dsa != NULL) {
- DSA_meth_set_name(cryptodev_dsa, "cryptodev DSA method");
+ DSA_meth_set1_name(cryptodev_dsa, "cryptodev DSA method");
DSA_meth_set_flags(cryptodev_dsa, 0);
if (ENGINE_set_DSA(engine, cryptodev_dsa)) {
if (cryptodev_asymfeat & CRF_DSA_SIGN)