diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-02-20 14:41:17 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-02-20 17:50:08 +0100 |
commit | dfef6f24d586663cb76d73145abc4a9bb7994df3 (patch) | |
tree | 7fc75dcc7663c0cc6107fb8a05c6d777c9ae1d47 /thirdparty/mbedtls | |
parent | d29488ee9b86d7edb48771c059173ae4c3ae7421 (diff) |
Small patch to change mbedtls _WIN32_WINNT
We are using 0x0601 as min anyway.
This avoids SOCKADDR_STORAGE error on uwp build
Diffstat (limited to 'thirdparty/mbedtls')
-rw-r--r-- | thirdparty/mbedtls/library/net_sockets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/mbedtls/library/net_sockets.c b/thirdparty/mbedtls/library/net_sockets.c index 345f10227b..754049005d 100644 --- a/thirdparty/mbedtls/library/net_sockets.c +++ b/thirdparty/mbedtls/library/net_sockets.c @@ -49,7 +49,7 @@ #undef _WIN32_WINNT #endif /* Enables getaddrinfo() & Co */ -#define _WIN32_WINNT 0x0501 +#define _WIN32_WINNT 0x0601 #include <ws2tcpip.h> #include <winsock2.h> |