aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-06-07 16:18:08 -0700
committerSteven Fackler <[email protected]>2014-06-07 16:18:08 -0700
commitd997210911a18cf9048afe195b701462c17989cb (patch)
tree8259c8bc48d79d01b16c9ccc659de39e405311b0
parentMerge pull request #16 from Florob/hmac (diff)
downloadrust-openssl-d997210911a18cf9048afe195b701462c17989cb.tar.xz
rust-openssl-d997210911a18cf9048afe195b701462c17989cb.zip
Update for mutex move
-rw-r--r--ssl/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/mod.rs b/ssl/mod.rs
index 88f121a0..c2cab075 100644
--- a/ssl/mod.rs
+++ b/ssl/mod.rs
@@ -2,7 +2,7 @@ use libc::{c_int, c_void, c_char};
use std::io::{IoResult, IoError, EndOfFile, Stream, Reader, Writer};
use std::mem;
use std::ptr;
-use std::unstable::mutex::NativeMutex;
+use std::rt::mutex::NativeMutex;
use sync::one::{Once, ONCE_INIT};
use ssl::error::{SslError, SslSessionClosed, StreamError};