summaryrefslogtreecommitdiff
path: root/archival/gzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'archival/gzip.c')
-rw-r--r--archival/gzip.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/archival/gzip.c b/archival/gzip.c
index a327d5435..5cc553a80 100644
--- a/archival/gzip.c
+++ b/archival/gzip.c
@@ -1998,13 +1998,7 @@ static void zip(ulg time_stamp)
1998 1998
1999/* ======================================================================== */ 1999/* ======================================================================== */
2000static 2000static
2001char* make_new_name_gzip(char *filename) 2001IF_DESKTOP(long long) int FAST_FUNC pack_gzip(unpack_info_t *info UNUSED_PARAM)
2002{
2003 return xasprintf("%s.gz", filename);
2004}
2005
2006static
2007IF_DESKTOP(long long) int pack_gzip(unpack_info_t *info UNUSED_PARAM)
2008{ 2002{
2009 struct stat s; 2003 struct stat s;
2010 2004
@@ -2063,7 +2057,7 @@ static const char gzip_longopts[] ALIGN1 =
2063#endif 2057#endif
2064 2058
2065/* 2059/*
2066 * Linux kernel build uses gzip -d -n. We accept and ignore it. 2060 * Linux kernel build uses gzip -d -n. We accept and ignore -n.
2067 * Man page says: 2061 * Man page says:
2068 * -n --no-name 2062 * -n --no-name
2069 * gzip: do not save the original file name and time stamp. 2063 * gzip: do not save the original file name and time stamp.
@@ -2113,5 +2107,5 @@ int gzip_main(int argc UNUSED_PARAM, char **argv)
2113 /* Initialise the CRC32 table */ 2107 /* Initialise the CRC32 table */
2114 G1.crc_32_tab = crc32_filltable(NULL, 0); 2108 G1.crc_32_tab = crc32_filltable(NULL, 0);
2115 2109
2116 return bbunpack(argv, make_new_name_gzip, pack_gzip); 2110 return bbunpack(argv, pack_gzip, append_ext, "gz");
2117} 2111}