aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/engine/tb_dsa.c
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-09-09 07:50:09 +0000
committerNils Larsch <nils@openssl.org>2005-09-09 07:50:09 +0000
commit4b08da55386af8fb701e072a25644bd4e3c65681 (patch)
treeb91fa76af9e279d814a7118e19287a4846a040ef /crypto/engine/tb_dsa.c
parent8a616a5a5fa12644c50a6e71e465280bea884b4a (diff)
downloadopenssl-4b08da55386af8fb701e072a25644bd4e3c65681.tar.gz
bugfix: register engine as default engine in ENGINE_set_default_DSA
Submitted by: Jonathon Green
Diffstat (limited to 'crypto/engine/tb_dsa.c')
-rw-r--r--crypto/engine/tb_dsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/tb_dsa.c b/crypto/engine/tb_dsa.c
index d326a5f6da..e4674f5f07 100644
--- a/crypto/engine/tb_dsa.c
+++ b/crypto/engine/tb_dsa.c
@@ -92,7 +92,7 @@ int ENGINE_set_default_DSA(ENGINE *e)
{
if(e->dsa_meth)
return engine_table_register(&dsa_table,
- engine_unregister_all_DSA, e, &dummy_nid, 1, 0);
+ engine_unregister_all_DSA, e, &dummy_nid, 1, 1);
return 1;
}