From 0450a14ae5028cc2bf1a57d5924090bda5e91a1d Mon Sep 17 00:00:00 2001 From: ashfall Date: Thu, 1 May 2014 10:04:04 -0700 Subject: Fix another function signature --- cryptography/hazmat/bindings/openssl/dh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptography/hazmat/bindings/openssl/dh.py b/cryptography/hazmat/bindings/openssl/dh.py index ea965f1f..a0f99479 100644 --- a/cryptography/hazmat/bindings/openssl/dh.py +++ b/cryptography/hazmat/bindings/openssl/dh.py @@ -41,7 +41,7 @@ int DH_generate_key(DH *); int DH_compute_key(unsigned char *, const BIGNUM *, DH *); int DH_set_ex_data(DH *, int, void *); void *DH_get_ex_data(DH *, int); -DH *d2iDHparams(DH **, unsigned char **, long); +DH *d2i_DHparams(DH **, const unsigned char **, long); int i2d_DHparams(const DH *, unsigned char **); int DHparams_print_fp(FILE *, const DH *); int DHparams_print(BIO *, const DH *); -- cgit v1.2.3