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".
pull/11239/head
Jaeden Amero 2019-08-16 09:17:49 +01:00
parent 033fffea84
commit 82927057b9
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@
#include "lwip_tcp_isn.h" #include "lwip_tcp_isn.h"
#define LWIP_HOOK_TCP_ISN lwip_hook_tcp_isn #define LWIP_HOOK_TCP_ISN lwip_hook_tcp_isn
#ifdef MBEDTLS_MD5_C #ifdef MBEDTLS_MD5_C
#include "mbedtls/inc/mbedtls/md5.h" #include "mbedtls/md5.h"
#define LWIP_USE_EXTERNAL_MBEDTLS 1 #define LWIP_USE_EXTERNAL_MBEDTLS 1
#endif #endif