Missing flag in unit test.

This commit is contained in:
Anthony Hu
2022-04-04 12:39:10 -04:00
parent c522baa75e
commit ae9926cc42

View File

@ -30460,7 +30460,7 @@ static void test_wc_GetPubKeyDerFromCert(void)
static void test_wc_CheckCertSigPubKey(void) static void test_wc_CheckCertSigPubKey(void)
{ {
#if defined(OPENSSL_EXTRA) && !defined(NO_CERTS) && !defined(NO_FILESYSTEM) && \ #if defined(OPENSSL_EXTRA) && !defined(NO_CERTS) && !defined(NO_FILESYSTEM) && \
!defined(NO_RSA) && defined(WOLFSSL_PEM_TO_DER) !defined(NO_RSA) && defined(WOLFSSL_PEM_TO_DER) && defined(HAVE_ECC)
int ret; int ret;
const char* ca_cert = "./certs/ca-cert.pem"; const char* ca_cert = "./certs/ca-cert.pem";
byte* cert_buf = NULL; byte* cert_buf = NULL;