diff options
| author | Steven Fackler <[email protected]> | 2015-11-19 17:01:24 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-11-19 17:01:24 -0800 |
| commit | bfba91296c45c1ff765afd42203b97a3566550ae (patch) | |
| tree | dcf9500ad14b9cc35aac7a92a0706f273f4525fb /openssl/src | |
| parent | Merge pull request #306 from overminder/get1-leak-fix (diff) | |
| parent | Fixed a typo in a comment. (diff) | |
| download | rust-openssl-bfba91296c45c1ff765afd42203b97a3566550ae.tar.xz rust-openssl-bfba91296c45c1ff765afd42203b97a3566550ae.zip | |
Merge pull request #307 from alex/patch-1
Fixed a typo in a comment.
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 23364ef1..2775c4c8 100644 --- a/openssl/src/ssl/mod.rs +++ b/openssl/src/ssl/mod.rs @@ -588,7 +588,7 @@ impl SslContext { /// If `onoff` is set to `true`, enable ECDHE for key exchange with compatible /// clients, and automatically select an appropriate elliptic curve. /// - /// This method requires OpenSSL >= 1.2.0 or LibreSSL and the `ecdh_auto` feature. + /// This method requires OpenSSL >= 1.0.2 or LibreSSL and the `ecdh_auto` feature. #[cfg(feature = "ecdh_auto")] pub fn set_ecdh_auto(&mut self, onoff: bool) -> Result<(),SslError> { wrap_ssl_result( |