Skip to content

Commit 8027fff

Browse files
committed
Fix nightly build issues
1 parent 8eb5db4 commit 8027fff

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

openssl/src/ssl/mod.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -805,13 +805,7 @@ impl<S: Read+Write> SslStream<S> {
805805
SslStream::new_server_from(ssl, stream)
806806
}
807807

808-
/// Returns a mutable reference to the underlying stream.
809-
///
810-
/// ## Warning
811-
///
812-
/// `read`ing or `write`ing directly to the underlying stream will most
813-
/// likely desynchronize the SSL session.
814-
#[deprecated="use get_mut instead"]
808+
#[doc(hidden)]
815809
pub fn get_inner(&mut self) -> &mut S {
816810
self.get_mut()
817811
}

openssl/src/ssl/tests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,6 @@ fn test_npn_server_advertise_multiple() {
429429
mod dtlsv1 {
430430
use serialize::hex::FromHex;
431431
use std::net::TcpStream;
432-
use std::old_io::{Writer};
433432
use std::thread;
434433

435434
use crypto::hash::Type::{SHA256};

0 commit comments

Comments
 (0)