summaryrefslogtreecommitdiffstats
path: root/src/crypto/rand
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2015-03-04 12:52:47 -0800
committerKenny Root <kroot@google.com>2015-03-04 12:52:50 -0800
commitac6c5371f5e5beafc345f312a097c3ebd4766afa (patch)
treef6cf25affe5e27bd36b17b917fb311882d818a99 /src/crypto/rand
parent0931866b30ca9c7b7694ff219d1a1868e4db8231 (diff)
downloadexternal_boringssl-ac6c5371f5e5beafc345f312a097c3ebd4766afa.zip
external_boringssl-ac6c5371f5e5beafc345f312a097c3ebd4766afa.tar.gz
external_boringssl-ac6c5371f5e5beafc345f312a097c3ebd4766afa.tar.bz2
MinGW on Linux uses lowercase include files
On Windows this doesn't matter since the filesystems are case- insensitive, but building BoringSSL on Linux with MinGW has case-sensitive filesystems. Change-Id: Iefd319cfda89d2d1f8d43cea39c68295bfa65c83
Diffstat (limited to 'src/crypto/rand')
-rw-r--r--src/crypto/rand/windows.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/rand/windows.c b/src/crypto/rand/windows.c
index 6f3f3a7..e8b2d78 100644
--- a/src/crypto/rand/windows.c
+++ b/src/crypto/rand/windows.c
@@ -21,13 +21,13 @@
#pragma warning(push, 3)
-#include <Windows.h>
+#include <windows.h>
/* #define needed to link in RtlGenRandom(), a.k.a. SystemFunction036. See the
* "Community Additions" comment on MSDN here:
* http://msdn.microsoft.com/en-us/library/windows/desktop/aa387694.aspx */
#define SystemFunction036 NTAPI SystemFunction036
-#include <NTSecAPI.h>
+#include <ntsecapi.h>
#undef SystemFunction036
#pragma warning(pop)