diff options
author | Andre Caron <andre.l.caron@gmail.com> | 2015-05-18 21:51:36 -0400 |
---|---|---|
committer | Andre Caron <andre.l.caron@gmail.com> | 2015-05-18 21:51:36 -0400 |
commit | d9b75259896a79a2524597a21f38c7d300232713 (patch) | |
tree | 7a6b73fdf8263caba9ba7d6517565baa87165baa | |
parent | 8bae15f18694b22627989b4517bf3dabea94a30e (diff) | |
download | cryptography-d9b75259896a79a2524597a21f38c7d300232713.tar.gz cryptography-d9b75259896a79a2524597a21f38c7d300232713.tar.bz2 cryptography-d9b75259896a79a2524597a21f38c7d300232713.zip |
Removes variable names from binding.
-rw-r--r-- | src/cryptography/hazmat/bindings/openssl/asn1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/asn1.py b/src/cryptography/hazmat/bindings/openssl/asn1.py index 5cdc28cc..711c30b2 100644 --- a/src/cryptography/hazmat/bindings/openssl/asn1.py +++ b/src/cryptography/hazmat/bindings/openssl/asn1.py @@ -98,7 +98,7 @@ ASN1_TIME *ASN1_TIME_new(void); void ASN1_TIME_free(ASN1_TIME *); ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *, ASN1_GENERALIZEDTIME **); -ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t); +ASN1_TIME *ASN1_TIME_set(ASN1_TIME *, time_t); /* ASN1 UTCTIME */ ASN1_UTCTIME *ASN1_UTCTIME_new(void); |