diff options
| author | Valerii Hiora <[email protected]> | 2015-01-07 15:32:51 +0200 |
|---|---|---|
| committer | Valerii Hiora <[email protected]> | 2015-01-07 15:32:51 +0200 |
| commit | 2a646916d75571e9232e3a6a5a6cd439fe639257 (patch) | |
| tree | 86faf0d035e9f001d7eca8a4ce43cd1b73aa1cbf /src/bio | |
| parent | Release v0.2.13 (diff) | |
| download | rust-openssl-2a646916d75571e9232e3a6a5a6cd439fe639257.tar.xz rust-openssl-2a646916d75571e9232e3a6a5a6cd439fe639257.zip | |
Handle recent breaking changes
- macro reform
- split of Show and String in formatter
- CString reform
- feature 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(()) |