aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-12-23 08:56:20 -0800
committerSteven Fackler <[email protected]>2014-12-23 08:56:20 -0800
commitb136cf6c9068ad2993b6a84f27396012a9c5405e (patch)
treec7bf75b5287c6bcec27ab9caec3395f522e90f88 /src/crypto
parentRelease v0.2.7 (diff)
parentUpdate to rust master (diff)
downloadrust-openssl-b136cf6c9068ad2993b6a84f27396012a9c5405e.tar.xz
rust-openssl-b136cf6c9068ad2993b6a84f27396012a9c5405e.zip
Merge pull request #130 from alexcrichton/update
Update to rust master
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/hash.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/hash.rs b/src/crypto/hash.rs
index 37573368..2a181526 100644
--- a/src/crypto/hash.rs
+++ b/src/crypto/hash.rs
@@ -135,7 +135,7 @@ mod tests {
}
fn compare(calced_raw: Vec<u8>, hashtest: &HashTest) {
- let calced = calced_raw.as_slice().to_hex().into_string();
+ let calced = calced_raw.as_slice().to_hex().to_string();
if calced != hashtest.expected_output {
println!("Test failed - {} != {}", calced, hashtest.expected_output);