summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiraj Razick <siraj.razick@collabora.co.uk>2011-12-19 17:18:43 -0500
committerYouness Alaoui <youness.alaoui@collabora.co.uk>2011-12-19 17:22:53 -0500
commitfdaec4b74d13bc9f18f413613e4124cf7287d62b (patch)
treea2c39a30e41174bb9835dcb46dd63fd192d349b5
parent7429fbc1b979412cabce01afd805ab39675bbf62 (diff)
downloadlibnice-fdaec4b74d13bc9f18f413613e4124cf7287d62b.tar.gz
Changes windows specific headers to lower case
This helps us when cross compiling libnice for Windows from Linux
-rw-r--r--agent/interfaces.c2
-rw-r--r--stun/rand.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/agent/interfaces.c b/agent/interfaces.c
index d5d4f4d..2bf7d3b 100644
--- a/agent/interfaces.c
+++ b/agent/interfaces.c
@@ -348,7 +348,7 @@ nice_interfaces_get_ip_for_interface (gchar *interface_name)
#ifdef G_OS_WIN32
#include <winsock2.h>
-#include <Iphlpapi.h>
+#include <iphlpapi.h>
// Should be in Iphlpapi.h, but mingw doesn't seem to have these
// Values copied directly from:
diff --git a/stun/rand.c b/stun/rand.c
index 964bb68..0de7f6e 100644
--- a/stun/rand.c
+++ b/stun/rand.c
@@ -43,7 +43,7 @@
#ifdef _WIN32
#include <windows.h>
-#include <Wincrypt.h>
+#include <wincrypt.h>
void RAND_bytes (uint8_t *dst, int len)
{