aboutsummaryrefslogtreecommitdiff
path: root/archival/unzip.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Ok, that's not a typo, that's just me not thinking.Rob Landley2006-08-041-1/+1
|
* Typo.Rob Landley2006-08-041-1/+1
|
* Now that we have xopen3(), it's just plain unclean to have xopen() withRob Landley2006-08-041-1/+1
| | | | | | | O_CREAT. Two users are still doing it (and thus getting permissions 777), I'm not sure what permissions they should be using but here they are changed to xopen3(). This costs us a dozen or so bytes, but removing the 777 from xopen() should get some of that back.
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-11/+6
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* "formated" -> "formatted" throughout the code base."Robert P. J. Day"2006-07-201-26/+26
|
* Cleaup read() and write() variants, plus a couple of new functions likeRob Landley2006-07-161-44/+17
| | | | xlseek and fdlength() for the new mkswap.
* - reuse strings and messages. Saves about 600BBernhard Reutner-Fischer2006-06-071-5/+5
|
* More size shrinkage.Rob Landley2006-05-291-2/+1
|
* Change llist_add_* to take the address of the list rather than returning the newRob Landley2006-05-261-2/+2
| | | | head, and change all the callers.
* - remove emacs layout block as suggested by Robert P.J. DayBernhard Reutner-Fischer2006-05-191-9/+0
| | | | - use shorter boilerplate while at it
* - patch from Denis Vlasenko to add and use bb_xchdir()Bernhard Reutner-Fischer2006-04-121-3/+2
|
* ensure that corrupted file extraction causes both a message andPaul Fox2006-03-271-4/+11
| | | | | | | | a failure exit code. delay the error exit until all (good) files have been extracted. filesystem errors (nodes of wrong type, permission problems, etc) still cause immediate failure.
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-061-1/+1
| | | | definitions. (That should only be on prototypes.)
* Patch from Robert P. Day, moving byte order checks to use platform.h macros.Rob Landley2006-03-041-7/+7
|
* Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x)Rob Landley2006-03-011-3/+3
| | | | from before "if(x) free(x)".
* Patch from Denis Vlasenko to constify things and fix a few typos.Rob Landley2006-02-221-1/+1
|
* just whitespaceTim Riker2006-01-251-2/+2
|
* - add platform.h.Bernhard Reutner-Fischer2006-01-221-18/+5
| | | | - use shorter boilerplate while at it.
* Cleanup patch by Bernhard Fischer, removing unnecessary includes ofRob Landley2005-09-111-1/+0
| | | | getopt.h, whitespace changes, typos, etc.
* rename the accept/reject names since accept overrides the accept() socket ↵Mike Frysinger2005-07-301-6/+6
| | | | function
* applying fixes from: Paul Fox2005-07-201-144/+333
| | | | | 0000142: unzip enhancements
* Update reference for zip formatGlenn L McGrath2004-06-061-1/+4
|
* s/fileno\(stdin\)/STDIN_FILENO/gEric Andersen2004-03-271-1/+1
| | | | s/fileno\(stdout\)/STDOUT_FILENO/g
* Move from read_gz to the pipe()+fork() method.Glenn L McGrath2003-11-151-5/+4
| | | | | | | | | 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.
* Major coreutils update.Manuel Novoa III2003-03-191-9/+9
|
* Move add_to_list from libunarchive to libbb so it can be of more general use ↵Glenn L McGrath2002-12-081-1/+1
| | | | (eg ifupdown). Changed the name to llist_add_to as i plan on adding more llist_ functions as needed (e.g. llist_free).
* Abstract read and seek in unarchiving code, convert bunzip to file ↵Glenn L McGrath2002-11-031-7/+8
| | | | descriptors, support tar -j
* New common unarchive code.Glenn L McGrath2002-09-251-39/+189
|
* unzip applet by Laurence AndersonGlenn L McGrath2002-01-021-0/+94
----------------------------------------------------------------------