Commit 88740c13 authored by Benjamin Fry's avatar Benjamin Fry
Browse files

add Ok to result

parent 933f660c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -665,7 +665,7 @@ impl SslContextBuilder {
            let result = try!(cvt(ffi::SSL_CTX_set0_verify_cert_store(self.as_ptr(), ptr) as c_int).map(|_|()));
            
            mem::forget(cert_store);
            result
            Ok(result)
        }
    }