From c7c97b85ad9ecb233f2799fc06c8b75142c8df39 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Sat, 13 Dec 2014 14:12:02 +0100 Subject: [PATCH] Update to new bzip2 code --- src/result.rs | 8 ++++++++ src/writer.rs | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/result.rs b/src/result.rs index bde488ac..2be52c74 100644 --- a/src/result.rs +++ b/src/result.rs @@ -31,6 +31,14 @@ impl error::FromError for ZipError } } +impl error::FromError<(T, io::IoError)> for ZipError +{ + fn from_error((_, err): (T, io::IoError)) -> ZipError + { + error::FromError::from_error(err) + } +} + impl error::Error for ZipError { fn description(&self) -> &str diff --git a/src/writer.rs b/src/writer.rs index 18535f26..2e05ab8a 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -223,7 +223,7 @@ impl GenericZipWriter { GenericZipWriter::Storer(w) => w, GenericZipWriter::Deflater(w) => try!(w.finish()), - GenericZipWriter::Bzip2(w) => try!(w.unwrap()), + GenericZipWriter::Bzip2(w) => try!(w.into_inner()), GenericZipWriter::Closed => try!(Err(io::standard_error(io::Closed))), };