diff options
author | Andrew Dunstan | 2017-04-15 13:47:36 +0000 |
---|---|---|
committer | Andrew Dunstan | 2017-04-15 13:47:36 +0000 |
commit | 0eba6be1b8d37fa368a45795ba350d46cc86df54 (patch) | |
tree | 82299333d5eb6d680b4d5e74db99dda0773a00ce | |
parent | 32470825d36d99a81347ee36c181d609c952c061 (diff) |
Downcase "Wincrypt.h"
This is consistent with how we refer to other Windows include files, and
prevents a failure when cross-compiling on a system with case sensitive
file names.
-rw-r--r-- | src/port/pg_strong_random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/pg_strong_random.c b/src/port/pg_strong_random.c index ac5c5d5df5..c6ee5ea1d4 100644 --- a/src/port/pg_strong_random.c +++ b/src/port/pg_strong_random.c @@ -28,7 +28,7 @@ #include <openssl/rand.h> #endif #ifdef WIN32 -#include <Wincrypt.h> +#include <wincrypt.h> #endif #ifdef WIN32 |