aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2017-04-15 09:47:36 -0400
committerAndrew Dunstan <andrew@dunslane.net>2017-04-15 09:47:36 -0400
commit0eba6be1b8d37fa368a45795ba350d46cc86df54 (patch)
tree82299333d5eb6d680b4d5e74db99dda0773a00ce /src
parent32470825d36d99a81347ee36c181d609c952c061 (diff)
downloadpostgresql-0eba6be1b8d37fa368a45795ba350d46cc86df54.tar.gz
postgresql-0eba6be1b8d37fa368a45795ba350d46cc86df54.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/port/pg_strong_random.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/pg_strong_random.c b/src/port/pg_strong_random.c
index ac5c5d5df5c..c6ee5ea1d46 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