1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +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 16:20:44 +01:00
parent e4603eece9
commit 94180e708f
2 changed files with 2 additions and 5 deletions

View File

@ -2638,8 +2638,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;
}
ssl->out_msglen = p - buf;