Skip to content

Commit

Permalink
Fix nightly build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Apr 15, 2015
1 parent 8eb5db4 commit 8027fff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
8 changes: 1 addition & 7 deletions openssl/src/ssl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down
1 change: 0 additions & 1 deletion openssl/src/ssl/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,6 @@ fn test_npn_server_advertise_multiple() {
mod dtlsv1 {
use serialize::hex::FromHex;
use std::net::TcpStream;
use std::old_io::{Writer};
use std::thread;

use crypto::hash::Type::{SHA256};
Expand Down

0 comments on commit 8027fff

Please sign in to comment.