Merge pull request #6957 from lealem47/expandDistro

Add --enable-quic to --enable-all
This commit is contained in:
David Garske
2023-11-10 15:32:05 -08:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@ -788,6 +788,7 @@ then
test "$enable_session_ticket" = "" && enable_session_ticket=yes
test "$enable_earlydata" = "" && enable_earlydata=yes
test "$enable_ech" = "" && enable_ech=yes
test "$enable_quic" = "" && enable_quic=yes
if test "$ENABLED_32BIT" != "yes"
then

View File

@ -14421,8 +14421,9 @@ int ProcessPeerCerts(WOLFSSL* ssl, byte* input, word32* inOutIdx,
}
}
else if (ret == ASN_PARSE_E || ret == BUFFER_E ||
ret == MEMORY_E) {
WOLFSSL_MSG("Got Peer cert ASN PARSE_E, BUFFER E, MEMORY_E");
ret == MEMORY_E || ret == BAD_FUNC_ARG) {
WOLFSSL_MSG("Got Peer cert ASN_PARSE_E, BUFFER_E, MEMORY_E,"
" BAD_FUNC_ARG");
#if defined(WOLFSSL_EXTRA_ALERTS) || defined(OPENSSL_EXTRA) || \
defined(OPENSSL_EXTRA_X509_SMALL)
DoCertFatalAlert(ssl, ret);