The ampersand is not required in these constructs, and was giving AIX

warnings.

Reported by: Bernhard Simon.
This commit is contained in:
Geoff Thorpe
2002-12-13 22:01:46 +00:00
parent 6f7ac8e1b0
commit 4329db3726
8 changed files with 16 additions and 16 deletions

View File

@@ -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;
}