diff options
-rw-r--r-- | cryptography/hazmat/bindings/openssl/ssl.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/cryptography/hazmat/bindings/openssl/ssl.py b/cryptography/hazmat/bindings/openssl/ssl.py index a6169598..ad102769 100644 --- a/cryptography/hazmat/bindings/openssl/ssl.py +++ b/cryptography/hazmat/bindings/openssl/ssl.py @@ -326,18 +326,18 @@ const SSL_METHOD* Cryptography_SSL_CTX_get_method(const SSL_CTX*); * versions some special handling of these is necessary. */ void SSL_CTX_set_next_protos_advertised_cb(SSL_CTX *, - int (*) (SSL *, - const unsigned char **, - unsigned int *, - void *), + int (*)(SSL *, + const unsigned char **, + unsigned int *, + void *), void *); void SSL_CTX_set_next_proto_select_cb(SSL_CTX *, - int (*) (SSL *, - unsigned char **, - unsigned char *, - const unsigned char *, - unsigned int, - void *), + int (*)(SSL *, + unsigned char **, + unsigned char *, + const unsigned char *, + unsigned int, + void *), void *); int SSL_select_next_proto(unsigned char **, unsigned char *, const unsigned char *, unsigned int, |