From 1a73704b8cf432fb74fc9f52ed4a0ac6637e078f Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 10 Nov 2019 19:16:56 -0500 Subject: Fixed #5050 -- dropped support for an old LibresSSL release (#5056) * Fixed #5050 -- dropped support for an old LibresSSL release * Changelog --- src/_cffi_src/openssl/dh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/_cffi_src/openssl/dh.py') diff --git a/src/_cffi_src/openssl/dh.py b/src/_cffi_src/openssl/dh.py index 6fdc7dd6..0e1df23a 100644 --- a/src/_cffi_src/openssl/dh.py +++ b/src/_cffi_src/openssl/dh.py @@ -39,7 +39,7 @@ int Cryptography_i2d_DHxparams_bio(BIO *bp, DH *x); CUSTOMIZATIONS = """ /* These functions were added in OpenSSL 1.1.0 */ -#if CRYPTOGRAPHY_OPENSSL_LESS_THAN_110 && !CRYPTOGRAPHY_LIBRESSL_27_OR_GREATER +#if CRYPTOGRAPHY_OPENSSL_LESS_THAN_110 && !CRYPTOGRAPHY_IS_LIBRESSL void DH_get0_pqg(const DH *dh, const BIGNUM **p, const BIGNUM **q, const BIGNUM **g) { -- cgit v1.2.3