diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-07-04 13:31:59 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-07-04 13:31:59 -0500 |
commit | 6e56df3e7a6a9e08fe80c30c9815fbbbae00a682 (patch) | |
tree | e217e7fc3aa2133b0031696395c3c4b57a46d41f /src | |
parent | 947941410c1af61d63dc2d96cb7c5e36c4119da6 (diff) | |
parent | 8c032553fb6a75614d2755963a923301fc3b03f1 (diff) | |
download | cryptography-6e56df3e7a6a9e08fe80c30c9815fbbbae00a682.tar.gz cryptography-6e56df3e7a6a9e08fe80c30c9815fbbbae00a682.tar.bz2 cryptography-6e56df3e7a6a9e08fe80c30c9815fbbbae00a682.zip |
Merge pull request #2111 from alex/othername-binding
Refs #2108 -- expand the OTHERNAME binding.
Diffstat (limited to 'src')
-rw-r--r-- | src/_cffi_src/openssl/x509v3.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/x509v3.py b/src/_cffi_src/openssl/x509v3.py index 52287459..0f5306d0 100644 --- a/src/_cffi_src/openssl/x509v3.py +++ b/src/_cffi_src/openssl/x509v3.py @@ -59,7 +59,8 @@ static const int GEN_IPADD; static const int GEN_RID; typedef struct { - ...; + ASN1_OBJECT *type_id; + ASN1_TYPE *value; } OTHERNAME; typedef struct { |