really default to default XZ compression level 32/107932/1
authorThierry Vignaud <thierry.vignaud@gmail.com>
Thu, 12 Feb 2009 10:59:31 +0000 (10:59 +0000)
committerDongkyun, Son <dongkyun.s@samsung.com>
Mon, 2 Jan 2017 02:25:01 +0000 (11:25 +0900)
which BTW fix the default compression level which is 6 instead of 7

Change-Id: I8b9b50a2cd1f64169477a72cc4d36a374d7a9867

rpmio/rpmio.c

index cd223e8..0d9ba03 100644 (file)
@@ -891,7 +891,7 @@ typedef struct lzfile {
 
 static LZFILE *lzopen_internal(const char *path, const char *mode, int fd, int xz)
 {
-    int level = 7;     /* Use XZ's default compression level if unspecified */
+    int level = LZMA_PRESET_DEFAULT;
     int encoding = 0;
     FILE *fp;
     LZFILE *lzfile;