From 594cec54bdff8b80e5f73a05013f4bf49bcae39c Mon Sep 17 00:00:00 2001 From: Mathias Bredholt Date: Fri, 8 Nov 2019 11:15:05 -0500 Subject: [PATCH] Removed relative path for lwip/arpa/inet.h The relative path breaks compatibility with arduino-esp32 as the path doesn't exist in arduino-esp32. https://github.com/espressif/arduino-esp32/pull/3425 Closes https://github.com/espressif/esp-idf/pull/4308 --- components/lwip/port/esp32/include/arpa/inet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lwip/port/esp32/include/arpa/inet.h b/components/lwip/port/esp32/include/arpa/inet.h index 90428f687d..94c6c17ed5 100644 --- a/components/lwip/port/esp32/include/arpa/inet.h +++ b/components/lwip/port/esp32/include/arpa/inet.h @@ -15,6 +15,6 @@ #ifndef INET_H_ #define INET_H_ -#include "../../../lwip/src/include/lwip/inet.h" +#include "lwip/inet.h" #endif /* INET_H_ */