Skip to content

Commit 8292705

Browse files
committed
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".
1 parent 033fffe commit 8292705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/lwipstack/lwipopts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@
399399
#include "lwip_tcp_isn.h"
400400
#define LWIP_HOOK_TCP_ISN lwip_hook_tcp_isn
401401
#ifdef MBEDTLS_MD5_C
402-
#include "mbedtls/inc/mbedtls/md5.h"
402+
#include "mbedtls/md5.h"
403403
#define LWIP_USE_EXTERNAL_MBEDTLS 1
404404
#endif
405405

0 commit comments

Comments
 (0)