aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-10-18 15:21:21 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-10-18 15:21:21 -0500
commit375e3ab6c05d3ef23604d2b6acff65071217b0a2 (patch)
treeca826fa3a952c34d12ec7f589339ee148d02abde
parent90dd2437b23e9f2f8afa3dfb59dcafeb071f0dd5 (diff)
downloadcryptography-375e3ab6c05d3ef23604d2b6acff65071217b0a2.tar.gz
cryptography-375e3ab6c05d3ef23604d2b6acff65071217b0a2.tar.bz2
cryptography-375e3ab6c05d3ef23604d2b6acff65071217b0a2.zip
compilation fixes
-rw-r--r--cryptography/hazmat/bindings/openssl/nid.py5
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
"""