From 1fa0d496bbddf7898fa830f01dd899c35b346a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Katzer?= Date: Thu, 30 Aug 2018 05:41:18 +0800 Subject: [PATCH] Fix Iphlpapi.h -> iphlpapi.h If you cross compile for Windows you will get an error otherwise that the header cannot be found. See here for code example from microsoft: https://docs.microsoft.com/en-us/windows/desktop/iphlp/creating-a-basic-ip-helper-application --- lib/core/libwebsockets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/libwebsockets.c b/lib/core/libwebsockets.c index 7b70814c7..58f00226f 100644 --- a/lib/core/libwebsockets.c +++ b/lib/core/libwebsockets.c @@ -28,7 +28,7 @@ #ifdef LWS_WITH_IPV6 #if defined(WIN32) || defined(_WIN32) #include -#include +#include #else #include #endif