Bug 444328 - Cross compilation fix.
authorJacek Caban <jacek@codeweavers.com>
Fri, 07 Feb 2014 12:51:08 +0100
changeset 167533 4877ea30474fda039ebac8c638f6fa6583e78dc9
parent 167532 11b6eab06c1783555aefa29acc4832922221212a
child 167534 30831efd61f0c8f4fda385f2fb099872881d85fa
push id26173
push userryanvm@gmail.com
push dateFri, 07 Feb 2014 19:22:20 +0000
treeherdermozilla-central@a96affc08b1c [default view] [failures only]
perfherder[talos] [build metrics] [platform microbench] (compared to previous push)
bugs444328
milestone30.0a1
first release with
nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
last release without
nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
Bug 444328 - Cross compilation fix.
netwerk/base/src/nsSocketTransport2.cpp
--- a/netwerk/base/src/nsSocketTransport2.cpp
+++ b/netwerk/base/src/nsSocketTransport2.cpp
@@ -42,18 +42,18 @@
 
 #if defined(XP_WIN)
 #include "nsNativeConnectionHelper.h"
 #endif
 
 /* Following inclusions required for keepalive config not supported by NSPR. */
 #include "private/pprio.h"
 #if defined(XP_WIN)
-#include <Winsock2.h>
-#include <Mstcpip.h>
+#include <winsock2.h>
+#include <mstcpip.h>
 #elif defined(XP_UNIX)
 #include <errno.h>
 #include <netinet/tcp.h>
 #endif
 /* End keepalive config inclusions. */
 
 using namespace mozilla;
 using namespace mozilla::net;