1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Minor coding style improvement

Signed-off-by: Joe Subbiani <joe.subbiani@arm.com>
This commit is contained in:
Joe Subbiani
2021-08-20 15:56:22 +01:00
parent efb8fae492
commit 24647c5cd2
2 changed files with 2 additions and 5 deletions

View File

@ -3014,8 +3014,7 @@ static int ssl_write_server_hello( mbedtls_ssl_context *ssl )
if( ext_len > 0 )
{
MBEDTLS_PUT_UINT16_BE( ext_len, p, 0 );
p += 2;
p += ext_len;
p += 2 + ext_len;
}
#if defined(MBEDTLS_SSL_PROTO_SSL3)