diff options
| author | Steven Fackler <[email protected]> | 2016-08-04 22:43:24 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-04 22:43:24 -0700 |
| commit | 378b86326cccceb1c21658a1a70ea442acc91495 (patch) | |
| tree | 459465ef4440352f64ac404a5edf75b99d1bf481 /openssl/src | |
| parent | Move SSL_CTX_set_read_ahead to -sys (diff) | |
| download | rust-openssl-378b86326cccceb1c21658a1a70ea442acc91495.tar.xz rust-openssl-378b86326cccceb1c21658a1a70ea442acc91495.zip | |
Move SSL_CTX_set_tmp_dh to -sys
Diffstat (limited to 'openssl/src')
| -rw-r--r-- | openssl/src/ssl/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/ssl/mod.rs b/openssl/src/ssl/mod.rs index 385fab85..21764bfb 100644 --- a/openssl/src/ssl/mod.rs +++ b/openssl/src/ssl/mod.rs @@ -516,7 +516,7 @@ impl SslContext { } pub fn set_tmp_dh(&mut self, dh: DH) -> Result<(), ErrorStack> { - wrap_ssl_result(unsafe { ffi_extras::SSL_CTX_set_tmp_dh(self.ctx, dh.raw()) as i32 }) + wrap_ssl_result(unsafe { ffi::SSL_CTX_set_tmp_dh(self.ctx, dh.raw()) as i32 }) } /// Use the default locations of trusted certificates for verification. |