Remove spurious extern "Rust" specifier

This commit is contained in:
Steven Fackler 2013-12-29 17:46:23 -08:00
parent 0aaeb3e067
commit 55f9feab47
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ extern "C" fn raw_verify(preverify_ok: c_int, x509_ctx: *ffi::X509_STORE_CTX)
} }
/// The signature of functions that can be used to manually verify certificates /// The signature of functions that can be used to manually verify certificates
pub type VerifyCallback = extern "Rust" fn(preverify_ok: bool, pub type VerifyCallback = fn(preverify_ok: bool,
x509_ctx: &X509StoreContext) -> bool; x509_ctx: &X509StoreContext) -> bool;
/// An SSL context object /// An SSL context object
pub struct SslContext { pub struct SslContext {