From 55540c6bd3966479a67f2fe5314b4ddcb3bff7e7 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Mon, 25 Nov 2019 16:13:01 -0800 Subject: [PATCH] Replace a compile option check around some filenames for certificate testing. --- wolfcrypt/test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index a64f07ed9..347ea3fb9 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -9247,7 +9247,7 @@ byte GetEntropy(ENTROPY_CMD cmd, byte* out) #endif /* HAVE_ECC */ #ifndef NO_RSA - #ifdef WOLFSSL_CERT_GEN + #if defined(WOLFSSL_CERT_GEN) || defined(WOLFSSL_CERT_EXT) static const char* otherCertDerFile = CERT_PREFIX "othercert.der"; static const char* certDerFile = CERT_PREFIX "cert.der"; #endif