summaryrefslogtreecommitdiff
path: root/openssl/src/bio.rs
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2016-08-05 21:07:17 -0700
committerSteven Fackler <sfackler@gmail.com>2016-08-05 21:07:17 -0700
commitbc97d088b0e71a1bde0a88bc548718c427124d0c (patch)
treed29251fdd659b809e0a509fc6d78821b7f1bec01 /openssl/src/bio.rs
parentfe47e93f2f5b6c2b2243b15445bbfdd4e58780b1 (diff)
downloadrust-openssl-bc97d088b0e71a1bde0a88bc548718c427124d0c.zip
get_handle -> handle
Diffstat (limited to 'openssl/src/bio.rs')
-rw-r--r--openssl/src/bio.rs4
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
}