diff options
| author | Steven Fackler <[email protected]> | 2014-06-07 16:18:08 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-06-07 16:18:08 -0700 |
| commit | d997210911a18cf9048afe195b701462c17989cb (patch) | |
| tree | 8259c8bc48d79d01b16c9ccc659de39e405311b0 | |
| parent | Merge pull request #16 from Florob/hmac (diff) | |
| download | rust-openssl-d997210911a18cf9048afe195b701462c17989cb.tar.xz rust-openssl-d997210911a18cf9048afe195b701462c17989cb.zip | |
Update for mutex move
| -rw-r--r-- | ssl/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}; |