Merge pull request #2995 from julek-wolfssl/va-copy-check

Enable wolfSSL_BIO_vprintf on Windows
This commit is contained in:
Kaleb Himes
2020-05-26 08:58:05 -07:00
committed by GitHub

View File

@ -26415,7 +26415,7 @@ int wolfSSL_BIO_vprintf(WOLFSSL_BIO* bio, const char* format, va_list args)
break; break;
case WOLFSSL_BIO_MEMORY: case WOLFSSL_BIO_MEMORY:
#if defined(OPENSSL_EXTRA) && !defined(_WIN32) #if defined(OPENSSL_EXTRA) && (!defined(_WIN32) || defined(HAVE_VA_COPY))
case WOLFSSL_BIO_SSL: case WOLFSSL_BIO_SSL:
{ {
int count; int count;