summaryrefslogtreecommitdiff
path: root/gzip.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2001-08-23A patch from Jaspreet Singh <jsingh@somanetworks.com>Eric Andersen2-10/+12
fixing both a segfault and cosmetic bug in route
2001-08-22A patch from Shu-Hao Chang <shuhao_chang@trend.com.tw> toEric Andersen3-26/+98
fixed sed handling of multiple -e commands
2001-08-22Force BB_FEATURE_NEW_MODULE_INTERFACE and BB_FEATURE_OLD_MODULE_INTERFACEEric Andersen2-4/+6
to be mutually exclusive
2001-08-22Add #include <sys/param.h> to ensure PATH_MAX is definedEric Andersen1-0/+1
2001-08-22Fix a warning and potential segfault in lash when BB_FEATURE_CLEAN_UPEric Andersen2-4/+4
is enabled
2001-08-22Fix an _old_ interface problem with a never-used feature.Eric Andersen2-16/+10
2001-08-22Scrub things and ditch uint64_t and use a custom type nameEric Andersen2-14/+26
to avoid C lib compatibility problems.
2001-08-22Bump version to 0.61.preEric Andersen3-3/+3
2001-08-22Patch from Rodney Brown <RDBrown@mira.net>, shrinking 1.5kEric Andersen3-54/+111
from gzip by careful optimization. Appears to work just fine (I've tested the changes on x86, ARM, and powerpc).
2001-08-22Make it compile with uClibcEric Andersen1-4/+6
2001-08-21dfp might be used uninitialized. NULL it.Eric Andersen1-1/+1
2001-08-21Disable the tinylogin apps by default.Eric Andersen1-5/+5
2001-08-21Fix dos2unix compile problem with certain glibc versionsEric Andersen2-4/+4
2001-08-21Initial merge of all tinylogin applets that do not require crypt.Eric Andersen10-0/+2109
There is some optimization that can be done to better use libbb in these applets. There is also redundancy between stty and getty which could be eliminated. -Erik
2001-08-20Fix a problem with unsatisfied backrefs (noted by Martin Bene).Matt Kraai2-8/+12
2001-08-20some minor wording changesEric Andersen1-3/+2
2001-08-20Apply Glenn's tftp rewriteEric Andersen2-274/+212
2001-08-15Fix version comparision bugGlenn L McGrath2-2/+2
2001-08-14Log all messages from a single connection, not just the first. Patch fromMatt Kraai2-4/+8
matthias@corelatus.com, approved by Gennady Feldman <gena01@cachier.com>.
2001-08-14Rewritten by Manuel Novoa III.Matt Kraai1-39/+28
2001-08-12I stupidly forgot one level of pointer indirection in the cmdtxt(), calcsize(),Manuel Novoa III2-38/+46
and copynode() table implementations. Commit the fix but keep them disabled until others check them out. Uncomment "//#define CMDTXT_TABLE", "//#define CALCSIZE_TABLE", and "//#define COPYNODE_TABLE" to try them out. Saves over 600 bytes on i386.
2001-08-10Fix a merging errorEric Andersen2-4/+2
2001-08-10A few bug fixes and significant size savings. Combined effort ofManuel Novoa III2-2356/+2126
Vladimir N. Oleynik dzo@simtreas.ru, Aaron Lehmann aaronl@vitelus.com, and myself.
2001-08-10Small size optimization from Aaron LehmannEric Andersen2-4/+4
2001-08-10Fix stupid grammar error.Eric Andersen2-4/+4
2001-08-10Commit Vladimir's simplify_path.Matt Kraai6-15/+90
2001-08-10This corrects the _really_poor_ implementation of "broadcast +" handlingManuel Novoa III3-39/+19
by ifconfig that someone had submitted. It fixes 1 bug, gets rid of the excessive bloating of a structure that is used in a static const array, and removes the implicit struct copys by keeping only the int type needed. It also turns this into a configurable feature (off by default).
2001-08-09Remind people to enable RPC support when using NFS mount and uClibc (thanksMatt Kraai1-0/+3
to David Douthitt).
2001-08-09Remove BB_SH define entirely.Matt Kraai6-18/+2
2001-08-06Use ferror(3) to check for errors, rather than inspecting errno. Thanks toMatt Kraai2-6/+2
David Douthitt for reporting, and shame on me for writing such crappy code.
2001-08-06Simplified version checking.Matt Kraai2-48/+16
2001-08-06Add support for underscores in variable names.Matt Kraai2-26/+26
2001-08-04Fix exclude list handlingGlenn L McGrath1-7/+18
2001-08-02Fix up some silly messups with the debian packaging, and a dumb0_60_0Eric Andersen6-30/+41
bug with chroot. I've had the package uploaded but perms set to 000, so I am going to re-tag things and re-cut the release. Folks who pulled from CVS in the last 30 minutes with just have to cope. -Erik
2001-08-02Fix misspelling of `stabilize'.Matt Kraai1-1/+1
2001-08-02Ok, here we go...Eric Andersen7-15/+84
2001-08-02Commit NMU changelog.Matt Kraai1-0/+7
2001-08-02More libc5 fixupsEric Andersen8-10/+270
-Erik
2001-08-02Some libc5 cleanupsEric Andersen1-2/+3
2001-08-02make_directory used mode as if it were an signed entity, but in factEric Andersen3-3/+3
it was a mode_t which is unsigned. Fix it to be signed... -Erik
2001-08-02Teach libc5 about realpathEric Andersen2-0/+10
-Erik
2001-08-02Teach libc5 what a sighandler_t isEric Andersen2-0/+8
-Erik
2001-08-02multibuild.pl saves us again. unix2dos requires that dos2unixEric Andersen4-0/+16
be enabled. -Erik
2001-08-02Ok, if no shell is enabled, don't include any of the SH_IS_<name>Eric Andersen2-8/+8
options or the build will fail -Erik
2001-08-02Scrub away the last leftovers from BB_FEATURE_<shell>. Good thingEric Andersen7-78/+52
for multibuild.pl -- I would have missed this stupid mess otherwise. -Erik
2001-08-02Patch from Robert J. Osborne <rj@resourceinternational.com> that fixesEric Andersen2-6/+6
a bug in vi where the beginning of the text space was not checked before dot is decremented for delete and escape sequences on an empty file.