diff options
| author | Steven Fackler <[email protected]> | 2016-10-20 22:41:42 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-10-20 22:51:10 -0700 |
| commit | b3eb8d516ca1f112fec37436bab56a061a934244 (patch) | |
| tree | b07040fba95bcd94931212723010f4198970bb68 /openssl/src/lib.rs | |
| parent | Merge pull request #485 from sfackler/verify-error (diff) | |
| download | rust-openssl-b3eb8d516ca1f112fec37436bab56a061a934244.tar.xz rust-openssl-b3eb8d516ca1f112fec37436bab56a061a934244.zip | |
Switch X509Name over to new borrow setup
The use of actual references enables us to be correct with respect to
mutability without needing two structs for the mutable and immutable
cases and more deref impls.
Diffstat (limited to 'openssl/src/lib.rs')
| -rw-r--r-- | openssl/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs index 39c9fffe..10f450dd 100644 --- a/openssl/src/lib.rs +++ b/openssl/src/lib.rs @@ -32,6 +32,7 @@ pub mod nid; pub mod ssl; pub mod version; pub mod x509; +mod opaque; pub fn cvt_p<T>(r: *mut T) -> Result<*mut T, ErrorStack> { if r.is_null() { |