diff options
| author | Valerii Hiora <[email protected]> | 2014-09-17 19:22:08 +0300 |
|---|---|---|
| committer | Valerii Hiora <[email protected]> | 2014-09-17 19:22:08 +0300 |
| commit | fb2665961c3566ef9df38c362e4e370ee8c31081 (patch) | |
| tree | d9c267d4b281f6d9b0c32e188c81f360ed2bdaf7 /src | |
| parent | Allow to set cert/key pair (diff) | |
| download | rust-openssl-fb2665961c3566ef9df38c362e4e370ee8c31081.tar.xz rust-openssl-fb2665961c3566ef9df38c362e4e370ee8c31081.zip | |
Fixed documentation string
Diffstat (limited to 'src')
| -rw-r--r-- | src/ssl/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ssl/mod.rs b/src/ssl/mod.rs index 6d3ca4d3..f254c0ce 100644 --- a/src/ssl/mod.rs +++ b/src/ssl/mod.rs @@ -186,7 +186,7 @@ impl SslContext { })) } - /// Specifies the file that is client certificate + /// Specifies the file that is client private key pub fn set_private_key_file(&mut self, file: &str, file_type: X509FileType) -> Option<SslError> { wrap_ssl_result(file.with_c_str(|file| { |