Age | Commit message (Expand) | Author |
2015-01-16 | Replace <sys/param.h> with <limits.h> and other less dirty headers where | Theo de Raadt |
2014-10-08 | userland reallocarray audit. | Doug Hogan |
2014-01-27 | Remove the no-op flags -L and -V from compress(1), these options | Todd C. Miller |
2013-04-17 | zlib info header is 32-bit; handle for localtime() call; ok millert | Theo de Raadt |
2012-09-30 | When outputting to stdout and compressing would grow the file, exit | Todd C. Miller |
2011-09-22 | Remove the rcsid which were intentionally skipped in the "purge of 2009" | Theo de Raadt |
2011-03-05 | Fix potential crash when GZIP variable set and more than 512 command | Todd C. Miller |
2010-07-28 | Truncate output file when compressing. OK deraadt@ | Todd C. Miller |
2009-04-18 | allow -V (show version) in decompression mode; ok millert@ | Christian Weisgerber |
2008-10-08 | For "gunzip -N", the name stored in the gzip header has no directory, | Todd C. Miller |
2008-07-27 | an enum specifier is more elegant than a set of #defines; | Igor Sobrado |
2008-07-05 | each utility must have its own usage and an unique set of options. | Igor Sobrado |
2008-02-25 | For the -l flag, set testmode to 1 instead of incrementing it. Fixes | Todd C. Miller |
2007-04-04 | Rename "nosave" variable to "storename" in hopes of clarifying | Todd C. Miller |
2007-04-03 | Fix PR 5417; gunzip should set the timestamp based on the | Todd C. Miller |
2007-01-18 | We don't want to use GZIP for compress. Only examine GZIP environment | Todd C. Miller |
2006-12-01 | Fix two bugs: stdin is processed and the current working dir is not | Otto Moerbeek |
2006-03-13 | Remove dependence on /dev/stdin and /dev/stdout | Todd C. Miller |
2005-07-22 | sort synopsis and options list; sync usage() (as best we can); | Jason McIntyre |
2005-07-11 | Don't set timestamps created from stack garbage when compressing | Todd C. Miller |
2005-06-26 | be a bit more carefull not writing to the stream after the timestamps | Otto Moerbeek |
2005-04-17 | spacing | Theo de Raadt |
2005-04-17 | use correct functions names in warn() | Hans-Joerg Hoexer |
2005-04-14 | use f{chown,chmod,utimes,chflags} instead; done with hshoexer, ok otto mickey | Theo de Raadt |
2005-02-24 | remove docompress() completely in case of -DSMALL and | Moritz Jodeit |
2005-02-07 | In list mode (which implies test mode), do not forget to initialize | Otto Moerbeek |
2005-01-27 | Compute compression ratio using signed arithmetic, since the compressed size | Otto Moerbeek |
2004-09-20 | Make "gunzip foo.bar" work when there is a foo.bar.gz file. | Todd C. Miller |
2004-07-29 | Don't set the output filename when in -t mode. Avoids an error when | Todd C. Miller |
2004-02-29 | don't stat(2) outfile in testmode; ok millert@, miod@ | Markus Friedl |
2004-01-22 | Make exit code for "unknown suffix" and "name too long" match GNU gzip. | Todd C. Miller |
2003-12-16 | do not implement -L (print copyright) with SMALL | Henning Brauer |
2003-12-16 | really don't do -V #ifdef SMALL | Henning Brauer |
2003-12-16 | do not include rcsids with -DSMALL and as it is meaningless then do not | Henning Brauer |
2003-12-16 | avoid name clash with newer libz; breaks on static archs | Henning Brauer |
2003-12-09 | Fixes based on a patch from Moritz Jodeit; mickey@ OK | Todd C. Miller |
2003-09-05 | KNF nit pointed out by theo | Henning Brauer |
2003-09-05 | dont error out when the input file is a symlink AND output goes to stdout | Henning Brauer |
2003-09-05 | add a null compressor from canacar@ that lets gzcat work with uncompressed | Ted Unangst |
2003-08-05 | spacing | Theo de Raadt |
2003-07-29 | Instead of checking for "stdout" in decompress(), just do the check | Todd C. Miller |
2003-07-29 | Check cat, not pipin when deciding whether or not to make use | Todd C. Miller |
2003-07-27 | Return FAILURE for "file would grow" case so the .gz file gets removed. | Todd C. Miller |
2003-07-25 | o deal with the case where -N was specified but no saved mtime in the gz file | Todd C. Miller |
2003-07-18 | Previously, "cat" mode (ie: zcat) was set if no input file was specified, | Todd C. Miller |
2003-07-18 | Change "nosave" back into a boolean for improved grokability. | Todd C. Miller |
2003-07-17 | o implement -l, -n and -N (including setting outfile + mtime) | Todd C. Miller |
2003-07-15 | Don't compress a file that already has a known compression prefix. | Todd C. Miller |
2003-07-14 | Improved (and cleaner) suffix handling code. Now "gunzip foo.tgz" | Todd C. Miller |
2003-07-14 | -t and implied -c due to piped in input is a legal combination of flags | Michael Shalayeff |