aboutsummaryrefslogtreecommitdiff
path: root/openssl/src/ssl/mod.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-10-23 09:26:06 -0700
committerGitHub <[email protected]>2016-10-23 09:26:06 -0700
commitcb44256876b7827774e4d29b8939708428074be4 (patch)
treed09557e8079e73de7b6bd17dc8126cde73f67287 /openssl/src/ssl/mod.rs
parentProperly propagate panics (diff)
parentRemove NIDs only defined in 1.0.2+ (diff)
downloadrust-openssl-cb44256876b7827774e4d29b8939708428074be4.tar.xz
rust-openssl-cb44256876b7827774e4d29b8939708428074be4.zip
Merge pull request #487 from sfackler/update
Updates
Diffstat (limited to 'openssl/src/ssl/mod.rs')
-rw-r--r--openssl/src/ssl/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/ssl/mod.rs b/openssl/src/ssl/mod.rs
index 963f252c..6e5a2c09 100644
--- a/openssl/src/ssl/mod.rs
+++ b/openssl/src/ssl/mod.rs
@@ -24,7 +24,7 @@ use dh::DH;
use x509::{X509StoreContextRef, X509FileType, X509, X509Ref, X509VerifyError};
#[cfg(any(all(feature = "v102", ossl102), all(feature = "v110", ossl110)))]
use x509::verify::X509VerifyParamRef;
-use crypto::pkey::PKey;
+use pkey::PKey;
use error::ErrorStack;
use opaque::Opaque;