Don't split debug messages
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index 83d3c96..caa1cd3 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -6377,8 +6377,7 @@
if( ssl->keep_current_message == 1 )
{
- MBEDTLS_SSL_DEBUG_MSG( 3, ( "ssl_check_pending: record "
- "held back for processing" ) );
+ MBEDTLS_SSL_DEBUG_MSG( 3, ( "ssl_check_pending: record held back for processing" ) );
return( 1 );
}
@@ -6390,8 +6389,7 @@
if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
ssl->in_left > ssl->next_record_offset )
{
- MBEDTLS_SSL_DEBUG_MSG( 3, ( "ssl_check_pending: more records "
- "within current datagram" ) );
+ MBEDTLS_SSL_DEBUG_MSG( 3, ( "ssl_check_pending: more records within current datagram" ) );
return( 1 );
}
#endif /* MBEDTLS_SSL_PROTO_DTLS */
@@ -6404,8 +6402,7 @@
* read_record_layer, see IOTSSL-1414 */
if( ssl->in_hslen > 0 && ssl->in_hslen < ssl->in_msglen )
{
- MBEDTLS_SSL_DEBUG_MSG( 3, ( "ssl_check_pending: more handshake "
- "messages within current record" ) );
+ MBEDTLS_SSL_DEBUG_MSG( 3, ( "ssl_check_pending: more handshake messages within current record" ) );
return( 1 );
}
@@ -6414,8 +6411,7 @@
*/
if( ssl->in_offt != NULL )
{
- MBEDTLS_SSL_DEBUG_MSG( 3, ( "ssl_check_pending: application data "
- "record is being processed" ) );
+ MBEDTLS_SSL_DEBUG_MSG( 3, ( "ssl_check_pending: application data record is being processed" ) );
return( 1 );
}