From d89e8cb4278a4ab56c941d3bbf4685efd3c346b0 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Fri, 28 Jun 2019 13:09:41 +0100 Subject: [PATCH] Don't break comment lines prematurely in ssl_ciphersuites.h --- include/mbedtls/ssl_ciphersuites.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/include/mbedtls/ssl_ciphersuites.h b/include/mbedtls/ssl_ciphersuites.h index a7bf90434..54491d719 100644 --- a/include/mbedtls/ssl_ciphersuites.h +++ b/include/mbedtls/ssl_ciphersuites.h @@ -497,13 +497,11 @@ static inline unsigned char mbedtls_ssl_suite_get_flags( } #else /* !MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE */ /* - * Implementations of getter functions in the case of only - * a single possible ciphersuite. In this case, the handle - * is logically a boolean (either the invalid handle or the - * unique valid handle representing the single enabled - * ciphersuite), and the precondition that the handle is valid - * means that we can statically return the hardcoded attribute - * of the enabled ciphersuite. + * Implementations of getter functions in the case of only a single possible + * ciphersuite. In this case, the handle is logically a boolean (either the + * invalid handle or the unique valid handle representing the single enabled + * ciphersuite), and the precondition that the handle is valid means that we + * can statically return the hardcoded attribute of the enabled ciphersuite. */ static inline int mbedtls_ssl_suite_get_id( mbedtls_ssl_ciphersuite_handle_t const info )