From a4796a7710215bdae5828cb62fde3b95c293b546 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 10 Mar 2014 17:55:57 -0400 Subject: this define is too large for a 32-bit integer. fixes #773 --- cryptography/hazmat/bindings/openssl/ssl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptography/hazmat/bindings/openssl/ssl.py b/cryptography/hazmat/bindings/openssl/ssl.py index 362e24e0..fa731f4e 100644 --- a/cryptography/hazmat/bindings/openssl/ssl.py +++ b/cryptography/hazmat/bindings/openssl/ssl.py @@ -80,7 +80,7 @@ static const int SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG; static const int SSL_OP_NO_QUERY_MTU; static const int SSL_OP_COOKIE_EXCHANGE; static const int SSL_OP_NO_TICKET; -static const int SSL_OP_ALL; +static const long SSL_OP_ALL; static const int SSL_OP_SINGLE_ECDH_USE; static const int SSL_VERIFY_PEER; static const int SSL_VERIFY_FAIL_IF_NO_PEER_CERT; -- cgit v1.2.3