diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-18 15:21:21 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-18 15:21:21 -0500 |
commit | 375e3ab6c05d3ef23604d2b6acff65071217b0a2 (patch) | |
tree | ca826fa3a952c34d12ec7f589339ee148d02abde /cryptography | |
parent | 90dd2437b23e9f2f8afa3dfb59dcafeb071f0dd5 (diff) | |
download | cryptography-375e3ab6c05d3ef23604d2b6acff65071217b0a2.tar.gz cryptography-375e3ab6c05d3ef23604d2b6acff65071217b0a2.tar.bz2 cryptography-375e3ab6c05d3ef23604d2b6acff65071217b0a2.zip |
compilation fixes
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/bindings/openssl/nid.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cryptography/hazmat/bindings/openssl/nid.py b/cryptography/hazmat/bindings/openssl/nid.py index add2a616..8938ada2 100644 --- a/cryptography/hazmat/bindings/openssl/nid.py +++ b/cryptography/hazmat/bindings/openssl/nid.py @@ -209,7 +209,6 @@ static const int NID_invalidity_date; static const int NID_delta_crl; static const int NID_any_policy; static const int NID_policy_mappings; -static const int NID_freshest_crl; static const int NID_target_information; static const int NID_no_rev_avail; static const int NID_anyExtendedKeyUsage; @@ -234,11 +233,11 @@ static const int NID_ecdsa_with_SHA512 = 0; #endif #ifndef NID_id_pkix_OCSP_noCheck -static const int NID_id_pkix_OCSP_noCheck = 369; +static const long NID_id_pkix_OCSP_noCheck = 369; #endif #ifndef NID_anyExtendedKeyUsage -static const int NID_anyExtendedKeyUsage = 910; +static const long NID_anyExtendedKeyUsage = 910; #endif """ |