* tests/unittests/torture_pki.c (setup_ecdsa_key*): Check for 'HAVE_ECC' instead of 'HAVE_OPENSSL_ECC'.
Signed-off-by: Justus Winter <[email protected]> --- tests/unittests/torture_pki.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unittests/torture_pki.c b/tests/unittests/torture_pki.c index 41fa452..a2bfdbc 100644 --- a/tests/unittests/torture_pki.c +++ b/tests/unittests/torture_pki.c @@ -47,7 +47,7 @@ static int setup_dsa_key(void **state) { return 0; } -#ifdef HAVE_OPENSSL_ECC +#ifdef HAVE_ECC static int setup_ecdsa_key(void **state, int ecdsa_bits) { (void) state; /* unused */ -- 2.1.4
