From d997210911a18cf9048afe195b701462c17989cb Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 7 Jun 2014 16:18:08 -0700 Subject: [PATCH] Update for mutex move --- ssl/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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};