aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcyli <cyli@twistedmatrix.com>2013-10-20 17:17:34 -0700
committercyli <cyli@twistedmatrix.com>2013-12-20 13:39:43 -0800
commit76db2227819f19d1094aa569725356f0d0f02e8a (patch)
tree05111c8e3786acc8ec64c36bec0201bdf8328bf1
parent272987868860db0d82a3765c7af767cbf12b4397 (diff)
downloadcryptography-76db2227819f19d1094aa569725356f0d0f02e8a.tar.gz
cryptography-76db2227819f19d1094aa569725356f0d0f02e8a.tar.bz2
cryptography-76db2227819f19d1094aa569725356f0d0f02e8a.zip
Fix broken function definition
-rw-r--r--cryptography/hazmat/backends/openssl/ssl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/backends/openssl/ssl.py b/cryptography/hazmat/backends/openssl/ssl.py
index 20b69b11..5a235f85 100644
--- a/cryptography/hazmat/backends/openssl/ssl.py
+++ b/cryptography/hazmat/backends/openssl/ssl.py
@@ -170,7 +170,7 @@ void SSL_CTX_set_verify(SSL_CTX *, int, verify_callback);
void SSL_CTX_set_verify_depth(SSL_CTX *, int);
int (*SSL_CTX_get_verify_callback(const SSL_CTX *))(int, X509_STORE_CTX *);
void SSL_CTX_set_info_callback(SSL_CTX *, info_callback);
-void (*SSL_CTX_get_info_callback(const SSL_CTX *))();
+void (*SSL_CTX_get_info_callback(SSL_CTX *))(const SSL *, int, int);
long SSL_CTX_set_options(SSL_CTX *, long);
long SSL_CTX_clear_options(SSL_CTX *, long);
long SSL_CTX_get_options(SSL_CTX *);