From 7b22fada51b9309fbbb6bf092cc38eda53850e4f Mon Sep 17 00:00:00 2001 From: Aaron Weiss Date: Sun, 30 Nov 2014 01:32:53 -0500 Subject: [PATCH] Fixed SSL feature compilation. --- src/conn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conn.rs b/src/conn.rs index 952565b..a7f9f15 100644 --- a/src/conn.rs +++ b/src/conn.rs @@ -144,7 +144,7 @@ fn ssl_to_io(res: Result) -> IoResult { match res { Ok(x) => Ok(x), Err(e) => Err(IoError { - kind: OtherIoError, + kind: IoErrorKind::OtherIoError, desc: "An SSL error occurred.", detail: Some(format!("{}", e)), }),