Jenkins fixes

pull/3260/head
Juliusz Sosinowicz 2020-08-28 11:35:48 +02:00
parent 52df9d6c69
commit 605b274442
3 changed files with 3 additions and 5 deletions

View File

@ -39,9 +39,7 @@
#include <wolfssl/openssl/ssl.h>
#include <wolfssl/test.h>
#ifdef WOLFSSL_DTLS
#include <wolfssl/error-ssl.h>
#endif
#include <wolfssl/error-ssl.h>
#include "examples/server/server.h"

View File

@ -17902,7 +17902,7 @@ startScr:
#endif
}
size = min(sz, ssl->buffers.clearOutputBuffer.length);
size = min(sz, (int)ssl->buffers.clearOutputBuffer.length);
XMEMCPY(output, ssl->buffers.clearOutputBuffer.buffer, size);

View File

@ -4550,8 +4550,8 @@ WOLFSSL_LOCAL int GrowInputBuffer(WOLFSSL* ssl, int size, int usedLength);
WOLFSSL_LOCAL int IsDtlsMsgSCRKeys(WOLFSSL* ssl);
WOLFSSL_LOCAL int DtlsUseSCRKeys(WOLFSSL* ssl);
WOLFSSL_LOCAL int DtlsCheckOrder(WOLFSSL* ssl, int order);
WOLFSSL_LOCAL int IsSCR(WOLFSSL* ssl);
#endif
WOLFSSL_LOCAL int IsSCR(WOLFSSL* ssl);
WOLFSSL_LOCAL void WriteSEQ(WOLFSSL* ssl, int verifyOrder, byte* out);