Skip to content

Commit e2bbacd

Browse files
author
Lealem Amedie
committed
Add QUIC to --enable-all
1 parent 1a3f3aa commit e2bbacd

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

configure.ac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -788,6 +788,7 @@ then
788788
test "$enable_session_ticket" = "" && enable_session_ticket=yes
789789
test "$enable_earlydata" = "" && enable_earlydata=yes
790790
test "$enable_ech" = "" && enable_ech=yes
791+
test "$enable_quic" = "" && enable_quic=yes
791792

792793
if test "$ENABLED_32BIT" != "yes"
793794
then

src/internal.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14421,8 +14421,9 @@ int ProcessPeerCerts(WOLFSSL* ssl, byte* input, word32* inOutIdx,
1442114421
}
1442214422
}
1442314423
else if (ret == ASN_PARSE_E || ret == BUFFER_E ||
14424-
ret == MEMORY_E) {
14425-
WOLFSSL_MSG("Got Peer cert ASN PARSE_E, BUFFER E, MEMORY_E");
14424+
ret == MEMORY_E || ret == BAD_FUNC_ARG) {
14425+
WOLFSSL_MSG("Got Peer cert ASN_PARSE_E, BUFFER_E, MEMORY_E,"
14426+
" BAD_FUNC_ARG");
1442614427
#if defined(WOLFSSL_EXTRA_ALERTS) || defined(OPENSSL_EXTRA) || \
1442714428
defined(OPENSSL_EXTRA_X509_SMALL)
1442814429
DoCertFatalAlert(ssl, ret);

0 commit comments

Comments
 (0)