From dfd87ba1d05777ed29fce769996de9fe3010911c Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Wed, 31 Oct 2007 13:10:55 +0000 Subject: [PATCH] (magic): Fix lzma option --- src/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buffer.c b/src/buffer.c index c022971..36a0cfd 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -219,7 +219,7 @@ static struct zip_magic const magic[] = { { ct_compress, 2, "\037\235", "compress", "-Z" }, { ct_gzip, 2, "\037\213", "gzip", "-z" }, { ct_bzip2, 3, "BZh", "bzip2", "-j" }, - { ct_lzma, 6, "\xFFLZMA", "lzma", "-a" }, /* FIXME: ???? */ + { ct_lzma, 6, "\xFFLZMA", "lzma", "--lzma" }, /* FIXME: ???? */ }; #define NMAGIC (sizeof(magic)/sizeof(magic[0])) -- 2.44.0