summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2015-06-09 01:28:43 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-09 01:28:43 +0000
commit107c2b89964bc5bbff3f4f57a43465d1ae240641 (patch)
tree2c2c3de56a1a9b59599f852e54c0f751ba757748
parent9d4bc055d8634ee6203925335464b4d9bec34be2 (diff)
parentcfb958c9a3369d555e4515a6277be43185af4445 (diff)
downloadexternal_boringssl-107c2b89964bc5bbff3f4f57a43465d1ae240641.zip
external_boringssl-107c2b89964bc5bbff3f4f57a43465d1ae240641.tar.gz
external_boringssl-107c2b89964bc5bbff3f4f57a43465d1ae240641.tar.bz2
am cfb958c9: Fix Windows SDK build again
* commit 'cfb958c9a3369d555e4515a6277be43185af4445': Fix Windows SDK build again
-rw-r--r--src/crypto/rand/windows.c2
-rw-r--r--src/crypto/thread_test.c2
2 files changed, 2 insertions, 2 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)
diff --git a/src/crypto/thread_test.c b/src/crypto/thread_test.c
index cecda88..e028b1b 100644
--- a/src/crypto/thread_test.c
+++ b/src/crypto/thread_test.c
@@ -22,7 +22,7 @@
#if defined(OPENSSL_WINDOWS)
#pragma warning(push, 3)
-#include <Windows.h>
+#include <windows.h>
#pragma warning(pop)
typedef HANDLE thread_t;