aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/rand.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-03-26 11:07:31 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-03-26 11:07:31 -0400
commit8d85b9564284a66aa28a0cbb759090b777698e43 (patch)
tree150f2e89467805934f9a0915fe11896b8dfd510c /src/_cffi_src/openssl/rand.py
parent9ef1d6fe96b897207739cd75ff283a0f061fd5a0 (diff)
downloadcryptography-8d85b9564284a66aa28a0cbb759090b777698e43.tar.gz
cryptography-8d85b9564284a66aa28a0cbb759090b777698e43.tar.bz2
cryptography-8d85b9564284a66aa28a0cbb759090b777698e43.zip
Attempt to simplify the libressl checing (#3482)
* Attempt to simplify the libressl checing * SHENANGINS * Attempted fix * More simplification
Diffstat (limited to 'src/_cffi_src/openssl/rand.py')
-rw-r--r--src/_cffi_src/openssl/rand.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/rand.py b/src/_cffi_src/openssl/rand.py
index 5f24a8d0..a294e961 100644
--- a/src/_cffi_src/openssl/rand.py
+++ b/src/_cffi_src/openssl/rand.py
@@ -38,7 +38,7 @@ int RAND_query_egd_bytes(const char *, unsigned char *, int);
"""
CUSTOMIZATIONS = """
-#if defined(LIBRESSL_VERSION_NUMBER) || CRYPTOGRAPHY_OPENSSL_110_OR_GREATER
+#if CRYPTOGRAPHY_IS_LIBRESSL || CRYPTOGRAPHY_OPENSSL_110_OR_GREATER
static const long Cryptography_HAS_EGD = 0;
int (*RAND_egd)(const char *) = NULL;
int (*RAND_egd_bytes)(const char *, int) = NULL;