diff options
| author | Steven Fackler <[email protected]> | 2014-03-20 19:09:39 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-03-20 19:09:39 -0700 |
| commit | 761901d0e409304450a49d784bae989d125c68b2 (patch) | |
| tree | af3fc7d28f78c8245c851edda27737e057c037fb /ssl/ffi.rs | |
| parent | Clean up locking code a bit (diff) | |
| download | rust-openssl-761901d0e409304450a49d784bae989d125c68b2.tar.xz rust-openssl-761901d0e409304450a49d784bae989d125c68b2.zip | |
Update for vec API changes
Diffstat (limited to 'ssl/ffi.rs')
| -rw-r--r-- | ssl/ffi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -124,7 +124,7 @@ extern "C" { pub fn SSL_CTX_new(method: *SSL_METHOD) -> *SSL_CTX; pub fn SSL_CTX_free(ctx: *SSL_CTX); pub fn SSL_CTX_set_verify(ctx: *SSL_CTX, mode: c_int, - verify_callback: Option<extern "C" fn(c_int, *X509_STORE_CTX) -> c_int>); + verify_callback: Option<extern fn(c_int, *X509_STORE_CTX) -> c_int>); pub fn SSL_CTX_load_verify_locations(ctx: *SSL_CTX, CAfile: *c_char, CApath: *c_char) -> c_int; pub fn SSL_CTX_get_ex_new_index(argl: c_long, argp: *c_void, |