浏览代码

(magic): Add an entry for new lzma format. Proposed by Lasse Collin

Sergey Poznyakoff 17 年之前
父节点
当前提交
c30a794679
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/buffer.c

+ 3 - 1
src/buffer.c

@@ -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]))