From a00165768cb582b93fdebc6032f2691fd8fcff08 Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Thu, 8 Jun 2017 13:34:44 -0600 Subject: [PATCH] Fix compile error, too many args with --enabl-wpas --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index eceafd442..1e90b71fa 100755 --- a/src/ssl.c +++ b/src/ssl.c @@ -4862,7 +4862,7 @@ static int ProcessChainBuffer(WOLFSSL_CTX* ctx, const unsigned char* buff, NULL) == 0) { WOLFSSL_MSG(" Proccessed a CRL"); wolfSSL_CertManagerLoadCRLBuffer(ctx->cm, der->buffer, - der->length,SSL_FILETYPE_ASN1, 0); + der->length,SSL_FILETYPE_ASN1); FreeDer(&der); used += info.consumed; continue;