aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-05-12 16:16:19 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-05-12 16:16:19 -0500
commitbac98978ceaf681e4702bf9c6c0aec35783e4b32 (patch)
tree9bb57f69a2e0bcaf0e28c9b52b811f32a73d6c5b /src
parent2b3fc1edf80c0c858fc8c81ecef891e90528feeb (diff)
downloadcryptography-bac98978ceaf681e4702bf9c6c0aec35783e4b32.tar.gz
cryptography-bac98978ceaf681e4702bf9c6c0aec35783e4b32.tar.bz2
cryptography-bac98978ceaf681e4702bf9c6c0aec35783e4b32.zip
having the right return type is helpful
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/hazmat/bindings/openssl/x509v3.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/x509v3.py b/src/cryptography/hazmat/bindings/openssl/x509v3.py
index 9d9bed16..23167996 100644
--- a/src/cryptography/hazmat/bindings/openssl/x509v3.py
+++ b/src/cryptography/hazmat/bindings/openssl/x509v3.py
@@ -203,7 +203,7 @@ POLICYQUALINFO *sk_POLICYQUALINFO_value(Cryptography_STACK_OF_POLICYQUALINFO *,
void sk_ASN1_INTEGER_free(Cryptography_STACK_OF_ASN1_INTEGER *);
int sk_ASN1_INTEGER_num(Cryptography_STACK_OF_ASN1_INTEGER *);
-int sk_ASN1_INTEGER_value(Cryptography_STACK_OF_ASN1_INTEGER *, int);
+ASN1_INTEGER *sk_ASN1_INTEGER_value(Cryptography_STACK_OF_ASN1_INTEGER *, int);
"""
CUSTOMIZATIONS = """