From 58c5cea73b7763f714f056263a40da56aeb84ca5 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Tue, 8 Sep 2020 10:31:33 +0100 Subject: [PATCH] Include common.h from ssl_tls13_keys.c `common.h` takes care of the logic of chosing the correct configuration file, so we don't need to replicate it in each source file. Signed-off-by: Hanno Becker --- library/ssl_tls13_keys.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/library/ssl_tls13_keys.c b/library/ssl_tls13_keys.c index 1d614556a..53044baed 100644 --- a/library/ssl_tls13_keys.c +++ b/library/ssl_tls13_keys.c @@ -17,11 +17,7 @@ * limitations under the License. */ -#if !defined(MBEDTLS_CONFIG_FILE) -#include "mbedtls/config.h" -#else -#include MBEDTLS_CONFIG_FILE -#endif +#include "common.h" #if defined(MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL)