diff options
author | Denis Vlasenko | 2008-11-01 12:54:56 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-11-01 12:54:56 +0000 |
commit | 1a9e9bdd93b06508b70bd29ef5eeb82f91d86222 (patch) | |
tree | adcf234f48d8a68a5644f1504cc93025d58ce2a2 /archival/gzip.c | |
parent | 5a89763fb7e57d4fc3d393eafa35c58f8285a083 (diff) | |
download | busybox-1a9e9bdd93b06508b70bd29ef5eeb82f91d86222.zip busybox-1a9e9bdd93b06508b70bd29ef5eeb82f91d86222.tar.gz |
gunzip: restore mtime. approx +80 bytes of code
rpm: make code more robust
lsmod: small code shrink
Diffstat (limited to 'archival/gzip.c')
-rw-r--r-- | archival/gzip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index ee05135..43804b2 100644 --- a/archival/gzip.c +++ b/archival/gzip.c @@ -40,6 +40,7 @@ aa: 85.1% -- replaced with aa.gz */ #include "libbb.h" +#include "unarchive.h" /* =========================================================================== @@ -2014,7 +2015,7 @@ char* make_new_name_gzip(char *filename) } static -USE_DESKTOP(long long) int pack_gzip(void) +USE_DESKTOP(long long) int pack_gzip(unpack_info_t *info UNUSED_PARAM) { struct stat s; |