From: Gurucharan Shetty Date: Fri, 16 Oct 2015 20:42:46 +0000 (-0700) Subject: windefs: Redefine INET6_ADDRSTRLEN for Windows. X-Git-Tag: v2.5.0~420 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=3feeb8b198d48e5e65b2fc0d7cfb2b037677dd6a;p=cascardo%2Fovs.git windefs: Redefine INET6_ADDRSTRLEN for Windows. Windows has INET6_ADDRSTRLEN defined as 65 whereas POSIX has it as 46. This difference causes a unit test failure as the test 'tunnel_push_pop' was looking at o/p format based on the length of INET6_ADDRSTRLEN. Signed-off-by: Gurucharan Shetty Acked-by: Joe Stringer --- diff --git a/include/windows/windefs.h b/include/windows/windefs.h index 2497c4b74..5137f073c 100644 --- a/include/windows/windefs.h +++ b/include/windows/windefs.h @@ -27,6 +27,9 @@ #pragma comment(lib, "advapi32") +#undef INET6_ADDRSTRLEN +#define INET6_ADDRSTRLEN 46 + #define inline __inline #define __func__ __FUNCTION__ #define ssize_t SSIZE_T