Fixed SSL feature compilation.

This commit is contained in:
Aaron Weiss 2014-11-30 01:32:53 -05:00
parent 098f9dbbff
commit 7b22fada51

View file

@ -144,7 +144,7 @@ fn ssl_to_io<T>(res: Result<T, SslError>) -> IoResult<T> {
match res {
Ok(x) => Ok(x),
Err(e) => Err(IoError {
kind: OtherIoError,
kind: IoErrorKind::OtherIoError,
desc: "An SSL error occurred.",
detail: Some(format!("{}", e)),
}),