diff options
| author | Steven Fackler <[email protected]> | 2015-04-15 09:10:22 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-04-15 09:10:22 -0700 |
| commit | 8027fff782a867abb647b922296805c22b2497cc (patch) | |
| tree | bc6d8c2578cbdbed52f7f4c1df02a41cd2b6b1a0 /openssl/src/ssl/mod.rs | |
| parent | Fix non-dtls tests (diff) | |
| download | rust-openssl-8027fff782a867abb647b922296805c22b2497cc.tar.xz rust-openssl-8027fff782a867abb647b922296805c22b2497cc.zip | |
Fix nightly build issues
Diffstat (limited to 'openssl/src/ssl/mod.rs')
| -rw-r--r-- | openssl/src/ssl/mod.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/openssl/src/ssl/mod.rs b/openssl/src/ssl/mod.rs index 0dd2b3cb..26851ade 100644 --- a/openssl/src/ssl/mod.rs +++ b/openssl/src/ssl/mod.rs @@ -805,13 +805,7 @@ impl<S: Read+Write> SslStream<S> { SslStream::new_server_from(ssl, stream) } - /// Returns a mutable reference to the underlying stream. - /// - /// ## Warning - /// - /// `read`ing or `write`ing directly to the underlying stream will most - /// likely desynchronize the SSL session. - #[deprecated="use get_mut instead"] + #[doc(hidden)] pub fn get_inner(&mut self) -> &mut S { self.get_mut() } |