Remove now-redundant code
Due to previous change of conditions, this is now in the 'else' branch of 'if
resume == 1' and the only allowed values are 0 or 1, so setting to 0 is
redundant.
diff --git a/library/ssl_cli.c b/library/ssl_cli.c
index 65f7c2c..083ea31 100644
--- a/library/ssl_cli.c
+++ b/library/ssl_cli.c
@@ -1830,9 +1830,6 @@
#endif /* !MBEDTLS_SSL_NO_SESSION_RESUMPTION */
{
ssl->state++;
-#if !defined(MBEDTLS_SSL_NO_SESSION_RESUMPTION)
- ssl->handshake->resume = 0;
-#endif /* !MBEDTLS_SSL_NO_SESSION_RESUMPTION */
#if defined(MBEDTLS_HAVE_TIME)
ssl->session_negotiate->start = mbedtls_time( NULL );
#endif