src/internal.c: fix for typo (identicalInnerCondition) in DoClientHello().

This commit is contained in:
Daniel Pouzzner
2023-05-17 01:05:14 -05:00
parent 3ad7e39dc4
commit 5aceae1d1c

View File

@@ -33326,7 +33326,6 @@ static int DoSessionTicket(WOLFSSL* ssl, const byte* input, word32* inOutIdx,
ret = DoClientHelloStateless(ssl, input, inOutIdx, helloSz);
if (ret != 0 || !ssl->options.dtlsStateful) {
int alertType = TranslateErrorToAlert(ret);
if (alertType != invalid_alert)
if (alertType != invalid_alert) {
int err;