diff options
author | Kenny Root <kroot@google.com> | 2015-03-04 12:52:47 -0800 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2015-05-13 12:12:59 -0700 |
commit | 9385cb180789855cbce47d20173d90999724e428 (patch) | |
tree | 5c59e0b82adf3322f2ab5bc7f451fb6148f4ae62 /src/crypto/rand | |
parent | 12956e176de90a3e64b6960071746276ea01bcb7 (diff) | |
download | external_boringssl-9385cb180789855cbce47d20173d90999724e428.zip external_boringssl-9385cb180789855cbce47d20173d90999724e428.tar.gz external_boringssl-9385cb180789855cbce47d20173d90999724e428.tar.bz2 |
MinGW on Linux uses lowercase include files, part 2
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: I1a145ee8dbb74a9f82e23ac40e7b9d23e03ccffc
Diffstat (limited to 'src/crypto/rand')
-rw-r--r-- | src/crypto/rand/windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/rand/windows.c b/src/crypto/rand/windows.c index 7bfcb1d..1a0cb8b 100644 --- a/src/crypto/rand/windows.c +++ b/src/crypto/rand/windows.c @@ -27,7 +27,7 @@ * "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) |