Loading src/ssl/error.rs +1 −1 Original line number Diff line number Diff line Loading @@ -42,8 +42,8 @@ fn get_reason(err: c_ulong) -> String { } #[test] #[ignore] // FIXME #65 fn test_uknown_error_should_have_correct_messages() { unsafe { ffi::SSL_load_error_strings(); } let err = 336032784; let library = get_lib(err); let function = get_func(err); Loading src/ssl/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -25,7 +25,7 @@ fn init() { INIT.doit(|| { ffi::SSL_library_init(); ffi::SSL_load_error_strings(); ffi::ERR_load_crypto_strings(); // necessary? ffi::ERR_load_crypto_strings(); let verify_idx = ffi::SSL_CTX_get_ex_new_index(0, ptr::null(), None, None, None); assert!(verify_idx >= 0); Loading Loading
src/ssl/error.rs +1 −1 Original line number Diff line number Diff line Loading @@ -42,8 +42,8 @@ fn get_reason(err: c_ulong) -> String { } #[test] #[ignore] // FIXME #65 fn test_uknown_error_should_have_correct_messages() { unsafe { ffi::SSL_load_error_strings(); } let err = 336032784; let library = get_lib(err); let function = get_func(err); Loading
src/ssl/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -25,7 +25,7 @@ fn init() { INIT.doit(|| { ffi::SSL_library_init(); ffi::SSL_load_error_strings(); ffi::ERR_load_crypto_strings(); // necessary? ffi::ERR_load_crypto_strings(); let verify_idx = ffi::SSL_CTX_get_ex_new_index(0, ptr::null(), None, None, None); assert!(verify_idx >= 0); Loading