From e35727c14d5ee8d3a19dd0f83269343ec91fbee5 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Tue, 3 May 2011 11:32:40 +0200 Subject: [PATCH] Fix algorithm type for signers, fixes warning with gcc 4.5 --- src/libstrongswan/crypto/crypto_tester.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstrongswan/crypto/crypto_tester.h b/src/libstrongswan/crypto/crypto_tester.h index 019c87c39..9ac665929 100644 --- a/src/libstrongswan/crypto/crypto_tester.h +++ b/src/libstrongswan/crypto/crypto_tester.h @@ -72,7 +72,7 @@ struct aead_test_vector_t { struct signer_test_vector_t { /** signer algorithm this test vector tests */ - pseudo_random_function_t alg; + integrity_algorithm_t alg; /** key to use, with a length the algorithm expects */ u_char *key; /** size of the input data */