diff options
author | Martin Willi <martin@revosec.ch> | 2012-05-14 14:11:22 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2012-05-14 14:11:22 +0200 |
commit | 1b82fdb2e5ed3ebf936607b13525cb446fe2bb13 (patch) | |
tree | 2ae07e1440bd50252a59bb40d8d1d03961b47cff | |
parent | d185b6acee2193e13e5b3adafa36c4923f1d36cc (diff) | |
download | strongswan-1b82fdb2e5ed3ebf936607b13525cb446fe2bb13.tar.bz2 strongswan-1b82fdb2e5ed3ebf936607b13525cb446fe2bb13.tar.xz |
Use correct integrity_algorithm_t enum type in bench_signer()
-rw-r--r-- | src/libstrongswan/crypto/crypto_tester.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/crypto/crypto_tester.c b/src/libstrongswan/crypto/crypto_tester.c index 8b1daa885..961957056 100644 --- a/src/libstrongswan/crypto/crypto_tester.c +++ b/src/libstrongswan/crypto/crypto_tester.c @@ -458,7 +458,7 @@ METHOD(crypto_tester_t, test_aead, bool, * Benchmark a signer */ static u_int bench_signer(private_crypto_tester_t *this, - encryption_algorithm_t alg, signer_constructor_t create) + integrity_algorithm_t alg, signer_constructor_t create) { signer_t *signer; |