aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorMatthijs van der Vleuten <[email protected]>2014-02-06 19:57:21 +0100
committerMatthijs van der Vleuten <[email protected]>2014-02-06 19:57:21 +0100
commite7f2dccb2f0ae8cea28d702807bf15069020b9f5 (patch)
tree0742cb09e4197bf6d3b55b4a69f27991e65893f1 /ssl
parentUpdate for IO API update (diff)
downloadrust-openssl-e7f2dccb2f0ae8cea28d702807bf15069020b9f5.tar.xz
rust-openssl-e7f2dccb2f0ae8cea28d702807bf15069020b9f5.zip
extra::sync was moved to sync crate
Diffstat (limited to 'ssl')
-rw-r--r--ssl/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/mod.rs b/ssl/mod.rs
index 6381b754..d6fb8bff 100644
--- a/ssl/mod.rs
+++ b/ssl/mod.rs
@@ -1,4 +1,4 @@
-use extra::sync::one::{Once, ONCE_INIT};
+use sync::one::{Once, ONCE_INIT};
use std::cast;
use std::libc::{c_int, c_void, c_char};
use std::ptr;