diff options
author | Steven Fackler <sfackler@gmail.com> | 2016-08-05 21:07:17 -0700 |
---|---|---|
committer | Steven Fackler <sfackler@gmail.com> | 2016-08-05 21:07:17 -0700 |
commit | bc97d088b0e71a1bde0a88bc548718c427124d0c (patch) | |
tree | d29251fdd659b809e0a509fc6d78821b7f1bec01 /openssl/src/bio.rs | |
parent | fe47e93f2f5b6c2b2243b15445bbfdd4e58780b1 (diff) | |
download | rust-openssl-bc97d088b0e71a1bde0a88bc548718c427124d0c.zip |
get_handle -> handle
Diffstat (limited to 'openssl/src/bio.rs')
-rw-r--r-- | openssl/src/bio.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/src/bio.rs b/openssl/src/bio.rs index 841aca0e..7adcc4e6 100644 --- a/openssl/src/bio.rs +++ b/openssl/src/bio.rs @@ -28,7 +28,7 @@ impl<'a> MemBioSlice<'a> { Ok(MemBioSlice(bio, PhantomData)) } - pub fn get_handle(&self) -> *mut ffi::BIO { + pub fn handle(&self) -> *mut ffi::BIO { self.0 } } @@ -53,7 +53,7 @@ impl MemBio { Ok(MemBio(bio)) } - pub fn get_handle(&self) -> *mut ffi::BIO { + pub fn handle(&self) -> *mut ffi::BIO { self.0 } |