Skip to content

Commit

Permalink
remove get_
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Dec 9, 2020
1 parent 41210af commit 134a9de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openssl/src/x509/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl X509VerifyParamRef {
/// This corresponds to [`X509_VERIFY_PARAM_get_flags`].
///
/// [`X509_VERIFY_PARAM_get_flags`]: https://www.openssl.org/docs/man1.0.2/crypto/X509_VERIFY_PARAM_get_flags.html
pub fn get_flags(&mut self) -> X509VerifyFlags {
pub fn flags(&mut self) -> X509VerifyFlags {
let bits = unsafe { ffi::X509_VERIFY_PARAM_get_flags(self.as_ptr()) };
X509VerifyFlags { bits }
}
Expand Down

0 comments on commit 134a9de

Please sign in to comment.