From: Michihiro NAKAJIMA Date: Sun, 14 Oct 2012 04:42:32 +0000 (+0900) Subject: Fix an external program name for lzip decompression. X-Git-Tag: v3.1.0~40^2~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c14e4656685bcaf194ee5cb1357e28f2b1b6a024;p=thirdparty%2Flibarchive.git Fix an external program name for lzip decompression. --- diff --git a/libarchive/archive_read_support_filter_xz.c b/libarchive/archive_read_support_filter_xz.c index ea47fe43a..f51df255b 100644 --- a/libarchive/archive_read_support_filter_xz.c +++ b/libarchive/archive_read_support_filter_xz.c @@ -972,7 +972,7 @@ lzip_bidder_init(struct archive_read_filter *self) { int r; - r = __archive_read_program(self, "unlzip"); + r = __archive_read_program(self, "lunzip"); /* Note: We set the format here even if __archive_read_program() * above fails. We do, after all, know what the format is * even if we weren't able to read it. */