summaryrefslogtreecommitdiffstats
path: root/crypto/engine/tb_digest.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_digest.c
parent6f7ac8e1b0654e1be7ec571f3646be6f37c34788 (diff)
The ampersand is not required in these constructs, and was giving AIX
warnings. Reported by: Bernhard Simon.
Diffstat (limited to 'crypto/engine/tb_digest.c')
-rw-r--r--crypto/engine/tb_digest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/engine/tb_digest.c b/crypto/engine/tb_digest.c
index 2c4dd6f796..e82d2a17c9 100644
--- a/crypto/engine/tb_digest.c
+++ b/crypto/engine/tb_digest.c
@@ -81,7 +81,7 @@ int ENGINE_register_digests(ENGINE *e)
int num_nids = e->digests(e, NULL, &nids, 0);
if(num_nids > 0)
return engine_table_register(&digest_table,
- &engine_unregister_all_digests, e, nids,
+ engine_unregister_all_digests, e, nids,
num_nids, 0);
}
return 1;
@@ -103,7 +103,7 @@ int ENGINE_set_default_digests(ENGINE *e)
int num_nids = e->digests(e, NULL, &nids, 0);
if(num_nids > 0)
return engine_table_register(&digest_table,
- &engine_unregister_all_digests, e, nids,
+ engine_unregister_all_digests, e, nids,
num_nids, 1);
}
return 1;