Commit 36515e4f authored by Peter Eisentraut's avatar Peter Eisentraut

Fix compiler warning

Fix a warning about unused variable on Windows when using OpenSSL.
parent 756349c8
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment