summaryrefslogtreecommitdiffstats
path: root/crypto/engine/tb_cipher.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_cipher.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_cipher.c')
-rw-r--r--crypto/engine/tb_cipher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/engine/tb_cipher.c b/crypto/engine/tb_cipher.c
index c5a50fc910..50b3cec1fa 100644
--- a/crypto/engine/tb_cipher.c
+++ b/crypto/engine/tb_cipher.c
@@ -81,7 +81,7 @@ int ENGINE_register_ciphers(ENGINE *e)
int num_nids = e->ciphers(e, NULL, &nids, 0);
if(num_nids > 0)
return engine_table_register(&cipher_table,
- &engine_unregister_all_ciphers, e, nids,
+ engine_unregister_all_ciphers, e, nids,
num_nids, 0);
}
return 1;
@@ -103,7 +103,7 @@ int ENGINE_set_default_ciphers(ENGINE *e)
int num_nids = e->ciphers(e, NULL, &nids, 0);
if(num_nids > 0)
return engine_table_register(&cipher_table,
- &engine_unregister_all_ciphers, e, nids,
+ engine_unregister_all_ciphers, e, nids,
num_nids, 1);
}
return 1;