From ead5cce22cc4b0d4d61c97846e8b6d23c60a9ae9 Mon Sep 17 00:00:00 2001 From: Jerry Yu Date: Mon, 9 May 2022 15:58:50 +0800 Subject: [PATCH] improve readability Signed-off-by: Jerry Yu --- library/ssl_tls13_server.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/library/ssl_tls13_server.c b/library/ssl_tls13_server.c index d68403fc71..bf863d5eaa 100644 --- a/library/ssl_tls13_server.c +++ b/library/ssl_tls13_server.c @@ -740,7 +740,9 @@ static int ssl_tls13_process_client_hello( mbedtls_ssl_context *ssl ) MBEDTLS_SSL_PROC_CHK_NEG( ssl_tls13_parse_client_hello( ssl, buf, buf + buflen ) ); - parse_client_hello_ret = ret; + parse_client_hello_ret = ret; /* store return reason of parse_client_hello + without error. on error, this statment will + not be called.*/ MBEDTLS_SSL_PROC_CHK( ssl_tls13_postprocess_client_hello( ssl ) );