summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-10-31 13:10:55 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-10-31 13:10:55 +0000
commitdfd87ba1d05777ed29fce769996de9fe3010911c (patch)
tree38e1e27f44f8ee79469a6020c53058b70b30bb66
parent5d4a682a55a8978ab144a3b026e7db8b2c799f5c (diff)
downloadtar-dfd87ba1d05777ed29fce769996de9fe3010911c.tar.gz
(magic): Fix lzma option
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index c0229715..36a0cfdd 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]))