diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-12-13 22:54:07 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-12-13 22:54:07 -0800 |
commit | d2e2cded7145e33aeab298a3d8ac0e55b54d0b1b (patch) | |
tree | 6b042f307e97dbb515004a93c6bd18994a07a554 /src | |
parent | c5e9ce030ba279973f2970d7efe16048a0d09b3a (diff) | |
download | cryptography-d2e2cded7145e33aeab298a3d8ac0e55b54d0b1b.tar.gz cryptography-d2e2cded7145e33aeab298a3d8ac0e55b54d0b1b.tar.bz2 cryptography-d2e2cded7145e33aeab298a3d8ac0e55b54d0b1b.zip |
Fixed the bio bindings to match our style guide
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/hazmat/bindings/openssl/bio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/bio.py b/src/cryptography/hazmat/bindings/openssl/bio.py index 854b2bc6..d97debb5 100644 --- a/src/cryptography/hazmat/bindings/openssl/bio.py +++ b/src/cryptography/hazmat/bindings/openssl/bio.py @@ -89,7 +89,7 @@ static const int BIO_TYPE_FILTER; """ FUNCTIONS = """ -BIO* BIO_new(BIO_METHOD *); +BIO *BIO_new(BIO_METHOD *); int BIO_set(BIO *, BIO_METHOD *); int BIO_free(BIO *); void BIO_vfree(BIO *); |