tests/api.c:test_wolfSSL_ERR_print_errors(): add missing gating on !defined(NO_ERROR_STRINGS).

This commit is contained in:
Daniel Pouzzner
2020-09-17 11:43:49 -05:00
parent cc1d016d1e
commit a1d231b4dc

View File

@@ -28374,7 +28374,7 @@ static void test_wolfSSL_ERR_put_error(void)
static void test_wolfSSL_ERR_print_errors(void)
{
#if !defined(NO_ERROR_QUEUE) && defined(OPENSSL_EXTRA) && \
defined(DEBUG_WOLFSSL)
defined(DEBUG_WOLFSSL) && !defined(NO_ERROR_STRINGS)
BIO* bio;
char buf[1024];