summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-09-09 07:52:18 +0000
committerNils Larsch <nils@openssl.org>2005-09-09 07:52:18 +0000
commite734dcc2c7857594c87233e3ecb1d23a8f6c3e8a (patch)
tree38c7cc9d23f9aee30d99a7d300eb4542457dfb90 /crypto
parent0fce007b8e3de7122fcc19de795f2c3d861f2c7b (diff)
bugfix: register engine as default engine in ENGINE_set_default_DSA
Submitted by: Jonathon Green
Diffstat (limited to 'crypto')
-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;
}