From 82927057b9862da8ee1c4b0f78153dbae6af6e07 Mon Sep 17 00:00:00 2001 From: Jaeden Amero Date: Fri, 16 Aug 2019 09:17:49 +0100 Subject: [PATCH] lwip: Use correct include path for mbedtls The portable and correct way to include Mbed TLS header files is "mbedtls/someheader.h". It's Mbed OS specific, unecessary, and incorrect to use "mbedtls/inc/mbedtls/someheader.h". --- features/lwipstack/lwipopts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/lwipstack/lwipopts.h b/features/lwipstack/lwipopts.h index e2b4d194b8..cc8fe7306f 100644 --- a/features/lwipstack/lwipopts.h +++ b/features/lwipstack/lwipopts.h @@ -399,7 +399,7 @@ #include "lwip_tcp_isn.h" #define LWIP_HOOK_TCP_ISN lwip_hook_tcp_isn #ifdef MBEDTLS_MD5_C -#include "mbedtls/inc/mbedtls/md5.h" +#include "mbedtls/md5.h" #define LWIP_USE_EXTERNAL_MBEDTLS 1 #endif