diff options
| author | Benjamin Fry <[email protected]> | 2017-03-19 12:06:41 -0700 |
|---|---|---|
| committer | Bastian Köcher <[email protected]> | 2018-03-07 13:50:12 +0100 |
| commit | 35cad33d518f3b6ecff1a01a4707b35ab834342e (patch) | |
| tree | 804a68c4d415c095b02a073c81b2f7eb77a8b02d /openssl-sys/src | |
| parent | properly version library functions (diff) | |
| download | rust-openssl-35cad33d518f3b6ecff1a01a4707b35ab834342e.tar.xz rust-openssl-35cad33d518f3b6ecff1a01a4707b35ab834342e.zip | |
fix error check
Diffstat (limited to 'openssl-sys/src')
| -rw-r--r-- | openssl-sys/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index 85ab03f7..c29b60e8 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -2605,7 +2605,6 @@ extern "C" { pub fn X509_sign(x: *mut X509, pkey: *mut EVP_PKEY, md: *const EVP_MD) -> c_int; pub fn X509_get_pubkey(x: *mut X509) -> *mut EVP_PKEY; pub fn X509_to_X509_REQ(x: *mut X509, pkey: *mut EVP_PKEY, md: *const EVP_MD) -> *mut X509_REQ; - #[cfg(not(any(ossl101, libressl)))] pub fn X509_verify_cert(ctx: *mut X509_STORE_CTX) -> c_int; pub fn X509_verify_cert_error_string(n: c_long) -> *const c_char; pub fn X509_get1_ocsp(x: *mut X509) -> *mut stack_st_OPENSSL_STRING; |