From: Denis Vlasenko Date: Sun, 1 Oct 2006 16:44:04 +0000 (-0000) Subject: gzip: add a bit of comment. The code itself X-Git-Tag: 1_4_0~564 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bb119d059a80c85fe844b9f9c770e0c77aeb49e6;p=oweals%2Fbusybox.git gzip: add a bit of comment. The code itself is too bloated to work on it... --- diff --git a/archival/gzip.c b/archival/gzip.c index bb58158f4..2fc9f7698 100644 --- a/archival/gzip.c +++ b/archival/gzip.c @@ -16,7 +16,12 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -// TODO: full support for -v for DESKTOP +/* TODO: full support for -v for DESKTOP +/usr/bin/gzip -v a bogus aa +a: 85.1% -- replaced with a.gz +gzip: bogus: No such file or directory +aa: 85.1% -- replaced with aa.gz +*/ #define SMALL_MEM @@ -125,8 +130,8 @@ typedef int file_t; /* Do not use stdio */ #define ASCII 1 #ifndef WSIZE -# define WSIZE 0x8000 /* window size--must be a power of two, and */ -#endif /* at least 32K for zip's deflate method */ +# define WSIZE 0x8000 /* window size--must be a power of two, and */ +#endif /* at least 32K for zip's deflate method */ #define MIN_MATCH 3 #define MAX_MATCH 258 @@ -2402,7 +2407,6 @@ static int zip(int in, int out) /* Write the header to the gzip file. See algorithm.doc for the format */ - method = DEFLATED; put_header_byte(GZIP_MAGIC[0]); /* magic header */ put_header_byte(GZIP_MAGIC[1]);