aboutsummaryrefslogtreecommitdiff
path: root/src/bio
diff options
context:
space:
mode:
authorValerii Hiora <[email protected]>2015-01-07 15:32:51 +0200
committerValerii Hiora <[email protected]>2015-01-07 15:32:51 +0200
commit2a646916d75571e9232e3a6a5a6cd439fe639257 (patch)
tree86faf0d035e9f001d7eca8a4ce43cd1b73aa1cbf /src/bio
parentRelease v0.2.13 (diff)
downloadrust-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.rs4
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(())