diff options
-rw-r--r-- | src/port/pg_strong_random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/pg_strong_random.c b/src/port/pg_strong_random.c index 0fad6f4bcb0..6be5874cbfb 100644 --- a/src/port/pg_strong_random.c +++ b/src/port/pg_strong_random.c @@ -27,11 +27,11 @@ #ifdef USE_OPENSSL #include <openssl/rand.h> #endif -#ifdef WIN32 +#ifdef USE_WIN32_RANDOM #include <wincrypt.h> #endif -#ifdef WIN32 +#ifdef USE_WIN32_RANDOM /* * Cache a global crypto provider that only gets freed when the process * exits, in case we need random numbers more than once. |