Fix a few style issues
diff --git a/library/ssl_cli.c b/library/ssl_cli.c
index 3b7e722..65f7c2c 100644
--- a/library/ssl_cli.c
+++ b/library/ssl_cli.c
@@ -1799,7 +1799,6 @@
MBEDTLS_SSL_DEBUG_MSG( 3, ( "server hello, session id len.: %d", n ) );
MBEDTLS_SSL_DEBUG_BUF( 3, "server hello, session id", buf + 35, n );
-
/*
* Check if the session can be resumed
*/
@@ -1812,7 +1811,9 @@
ssl->session_negotiate->compression != comp ||
ssl->session_negotiate->id_len != n ||
memcmp( ssl->session_negotiate->id, buf + 35, n ) != 0 )
+ {
ssl->handshake->resume = 0;
+ }
if( ssl->handshake->resume == 1 )
{
ssl->state = MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC;