]> Dogcows Code - chaz/tar/commitdiff
(magic): Add an entry for new lzma format. Proposed by Lasse Collin
authorSergey Poznyakoff <gray@gnu.org.ua>
Wed, 17 Oct 2007 09:11:08 +0000 (09:11 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Wed, 17 Oct 2007 09:11:08 +0000 (09:11 +0000)
src/buffer.c

index f99dcca1b2829bb978073d12657829fb5277df8b..75b4487a8ef2ef5c3064749b71b042ce8e23ca60 100644 (file)
@@ -204,7 +204,8 @@ enum compress_type {
   ct_none,
   ct_compress,
   ct_gzip,
-  ct_bzip2
+  ct_bzip2,
+  ct_lzma
 };
 
 struct zip_magic
@@ -221,6 +222,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: ???? */
 };
 
 #define NMAGIC (sizeof(magic)/sizeof(magic[0]))
This page took 0.0285 seconds and 4 git commands to generate.