diff options
| author | Steven Fackler <[email protected]> | 2015-01-07 08:13:19 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-01-07 08:13:19 -0800 |
| commit | 8b67adfc90d2ce3244f5c8f275916bb8b903fd21 (patch) | |
| tree | 86faf0d035e9f001d7eca8a4ce43cd1b73aa1cbf /src/bio | |
| parent | Release v0.2.13 (diff) | |
| parent | Handle recent breaking changes (diff) | |
| download | rust-openssl-0.2.14.tar.xz rust-openssl-0.2.14.zip | |
Merge pull request #139 from vhbit/up-masterv0.2.14
Handle recent breaking changes
Diffstat (limited to 'src/bio')
| -rw-r--r-- | src/bio/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bio/mod.rs b/src/bio/mod.rs index afc55849..7172b009 100644 --- a/src/bio/mod.rs +++ b/src/bio/mod.rs @@ -76,7 +76,7 @@ impl Reader for MemBio { IoError { kind: OtherIoError, desc: "MemBio read error", - detail: Some(format!("{}", SslError::get())) + detail: Some(format!("{:?}", SslError::get())) } }; Err(err) @@ -96,7 +96,7 @@ impl Writer for MemBio { Err(IoError { kind: OtherIoError, desc: "MemBio write error", - detail: Some(format!("{}", SslError::get())) + detail: Some(format!("{:?}", SslError::get())) }) } else { Ok(()) |