Update for mutex move

This commit is contained in:
Steven Fackler 2014-06-07 16:18:08 -07:00
parent b642515c92
commit d997210911
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ use libc::{c_int, c_void, c_char};
use std::io::{IoResult, IoError, EndOfFile, Stream, Reader, Writer}; use std::io::{IoResult, IoError, EndOfFile, Stream, Reader, Writer};
use std::mem; use std::mem;
use std::ptr; use std::ptr;
use std::unstable::mutex::NativeMutex; use std::rt::mutex::NativeMutex;
use sync::one::{Once, ONCE_INIT}; use sync::one::{Once, ONCE_INIT};
use ssl::error::{SslError, SslSessionClosed, StreamError}; use ssl::error::{SslError, SslSessionClosed, StreamError};