aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-03-27 16:42:20 +0000
committerAlex Stapleton <alexs@prol.etari.at>2014-03-27 16:42:20 +0000
commita2aacf72744d515095ebe09d013e9348226ba0fe (patch)
tree6982ec55097c682407f090d329a579784ef40f44
parent5e4c8c3666860fbe7320ea2227428f530cc8f176 (diff)
downloadcryptography-a2aacf72744d515095ebe09d013e9348226ba0fe.tar.gz
cryptography-a2aacf72744d515095ebe09d013e9348226ba0fe.tar.bz2
cryptography-a2aacf72744d515095ebe09d013e9348226ba0fe.zip
Remove change to bindings
-rw-r--r--cryptography/hazmat/bindings/openssl/ssl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/openssl/ssl.py b/cryptography/hazmat/bindings/openssl/ssl.py
index fed74857..eb1f018b 100644
--- a/cryptography/hazmat/bindings/openssl/ssl.py
+++ b/cryptography/hazmat/bindings/openssl/ssl.py
@@ -319,7 +319,7 @@ void (*SSL_CTX_get_info_callback(SSL_CTX *))(const SSL *, int, int);
RHEL/CentOS 5 this can be moved back to FUNCTIONS. */
SSL_CTX *SSL_set_SSL_CTX(SSL *, SSL_CTX *);
-const SSL_METHOD *Cryptography_SSL_CTX_get_method(const SSL_CTX *);
+const SSL_METHOD* Cryptography_SSL_CTX_get_method(const SSL_CTX*);
"""
CUSTOMIZATIONS = """
@@ -423,7 +423,7 @@ static const long Cryptography_HAS_NETBSD_D1_METH = 1;
#endif
// Workaround for #794 caused by cffi const** bug.
-const SSL_METHOD *Cryptography_SSL_CTX_get_method(const SSL_CTX *ctx) {
+const SSL_METHOD* Cryptography_SSL_CTX_get_method(const SSL_CTX* ctx) {
return ctx->method;
}
"""