From 03799427445d796d8ada01bb4258b80fa787ac3a Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Thu, 22 Jul 2021 11:33:12 +0100 Subject: [PATCH] Explicitly mark mbedtls_ssl_config.respect_cli_pref as private This was always intended to be explicitly marked private. Signed-off-by: Hanno Becker --- include/mbedtls/ssl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h index e69bdb64f9..610aa14914 100644 --- a/include/mbedtls/ssl.h +++ b/include/mbedtls/ssl.h @@ -1214,7 +1214,7 @@ struct mbedtls_ssl_config #if defined(MBEDTLS_SSL_SRV_C) unsigned int MBEDTLS_PRIVATE(cert_req_ca_list) : 1; /*!< enable sending CA list in Certificate Request messages? */ - unsigned int respect_cli_pref : 1; /*!< pick the ciphersuite according to + unsigned int MBEDTLS_PRIVATE(respect_cli_pref) : 1; /*!< pick the ciphersuite according to the client's preferences rather than ours */ #endif