diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-10 17:55:57 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-10 17:55:57 -0400 |
commit | a4796a7710215bdae5828cb62fde3b95c293b546 (patch) | |
tree | 340574b1b215ac152016ea2c3b25e7200e47f44c | |
parent | 933afee7da0ff431da452ef32ef23dc17527b16a (diff) | |
download | cryptography-a4796a7710215bdae5828cb62fde3b95c293b546.tar.gz cryptography-a4796a7710215bdae5828cb62fde3b95c293b546.tar.bz2 cryptography-a4796a7710215bdae5828cb62fde3b95c293b546.zip |
this define is too large for a 32-bit integer. fixes #773
-rw-r--r-- | cryptography/hazmat/bindings/openssl/ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
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; |