summaryrefslogtreecommitdiff
path: root/archival/libunarchive/open_transformer.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* open_transformer: fix vda's goofupDenis Vlasenko2007-09-091-2/+3
|
* tar + gzip/bzip2/etc: support NOMMU machines (by Alex Landau ↵Denis Vlasenko2007-09-051-3/+22
| | | | <landau_alex@yahoo.com>)
* tar: conditionally don't wait for vforked child to exec, as it alwaysDenis Vlasenko2007-09-041-2/+4
| | | | | | | | | | | | | | | works right on Linux, and anyway mayresult only on less-than-clear error message only, it will not cause tar to misbehave. function old new delta open_transformer 98 80 -18 writeTarFile 714 547 -167 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/2 up/down: 0/-185) Total: -185 bytes text data bss dec hex filename 770651 1051 10764 782466 bf082 busybox_old 770463 1051 10764 782278 befc6 busybox_unstripped
* delete tons of extra #includesDenis Vlasenko2007-05-311-4/+0
|
* xpipe: introduce (saves ~170 bytes)Denis Vlasenko2007-05-261-3/+1
| | | | | udhcp/signalpipe.c: use pipe instead of socketpair.
* add open_read_close() and similar stuffDenis Vlasenko2006-10-141-8/+8
|
* g[un]zip: add support for -v (verbose).Denis Vlasenko2006-10-011-2/+4
| | | | | Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-021-0/+1
|
* - include proper prototypes in libunarchive.Bernhard Reutner-Fischer2006-04-021-13/+3
|
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-061-1/+1
| | | | definitions. (That should only be on prototypes.)
* Dont close original file handle, we may need it later.Glenn L McGrath2003-11-181-3/+4
|
* Move from read_gz to the pipe()+fork() method.Glenn L McGrath2003-11-151-0/+50
open_transformer(), common code for pipe+fork. Function pointer for read() no longer needed. Allow inflate to be initialised with a specified buffer size to avoid over-reading. Reset static variables in inflate_get_next_window to fix a bug where only the first file in a .zip would be be extracted.