From c62f535cb5908fdebc677b716fc423f1613ee018 Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Fri, 6 Mar 2026 09:25:32 +0100 Subject: [PATCH] Remove duplicate check F-20 --- src/dtls13.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dtls13.c b/src/dtls13.c index 48caf4f22d..5af638645d 100644 --- a/src/dtls13.c +++ b/src/dtls13.c @@ -473,7 +473,7 @@ static int Dtls13SendNow(WOLFSSL* ssl, enum HandShakeType handshakeType) if (handshakeType == client_hello || handshakeType == hello_retry_request || handshakeType == finished || handshakeType == session_ticket || - handshakeType == session_ticket || handshakeType == key_update || + handshakeType == key_update || (handshakeType == certificate_request && ssl->options.handShakeState == HANDSHAKE_DONE)) return 1;