aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/engine/tb_dsa.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2002-12-13 22:01:46 +0000
committerGeoff Thorpe <geoff@openssl.org>2002-12-13 22:01:46 +0000
commit4329db3726ef2010e6c5760f0ebe52dd447a63fd (patch)
tree208dae61784b69ae898ca01cb82e02dad8b4b17f /crypto/engine/tb_dsa.c
parent6f7ac8e1b0654e1be7ec571f3646be6f37c34788 (diff)
downloadopenssl-4329db3726ef2010e6c5760f0ebe52dd447a63fd.tar.gz
The ampersand is not required in these constructs, and was giving AIX
warnings. Reported by: Bernhard Simon.
Diffstat (limited to 'crypto/engine/tb_dsa.c')
-rw-r--r--crypto/engine/tb_dsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/engine/tb_dsa.c b/crypto/engine/tb_dsa.c
index e9209476b8..80170591f2 100644
--- a/crypto/engine/tb_dsa.c
+++ b/crypto/engine/tb_dsa.c
@@ -78,7 +78,7 @@ int ENGINE_register_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, 0);
return 1;
}
@@ -94,7 +94,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, 0);
return 1;
}