From 375b9c1a59f616878c706706c9d1d4908fa298b1 Mon Sep 17 00:00:00 2001 From: Sean Parkinson Date: Mon, 12 Sep 2022 13:11:49 +1000 Subject: [PATCH] TLS 1.3 Middle-Box compat: fix missing brace --- src/tls13.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tls13.c b/src/tls13.c index 50cb2de58..f00195411 100644 --- a/src/tls13.c +++ b/src/tls13.c @@ -4459,6 +4459,7 @@ int DoTls13ServerHello(WOLFSSL* ssl, const byte* input, word32* inOutIdx, WOLFSSL_MSG("session id doesn't match client random"); WOLFSSL_ERROR_VERBOSE(INVALID_PARAMETER); return INVALID_PARAMETER; + } } else #endif /* WOLFSSL_TLS13_MIDDLEBOX_COMPAT */