summaryrefslogtreecommitdiff
path: root/archival/libunarchive/get_header_tar_bz2.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* apply post 1.7.0 patches, set version to 1.7.11_7_1Denis Vlasenko2007-09-161-1/+1
|
* rmp: add optional support for bz2 data. +50 bytes of codeDenis Vlasenko2007-06-081-1/+1
|
* removal of commented-out cruftDenis Vlasenko2006-12-221-7/+0
|
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-201-1/+1
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-3/+3
|
* Add one-line GPL boilerplate to numerous (but not all yet) source files."Robert P. J. Day"2006-07-121-13/+1
|
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-021-0/+1
|
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-061-1/+1
| | | | definitions. (That should only be on prototypes.)
* Move from read_gz to the pipe()+fork() method.Glenn L McGrath2003-11-151-41/+1
| | | | | | | | | 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.
* Remove some tar_gz stuff that get dragged inGlenn L McGrath2003-11-141-3/+4
|
* Remove debugging noise.Glenn L McGrath2003-11-141-1/+0
|
* Fix tar -j supportGlenn L McGrath2003-11-051-6/+42
| | | | | | | | | | | | | | Use the old fork() method of tar compression support, rather than read_bz2.... - (*uncompress)(int in, int out) seems like a more natural interface for compression code. - it might improve performance by seperating the work into one cpu bound and one io bound process. - There is extra code required to do read_[gz|bunzip] since (*uncompress)(int in, int out) will normally be used by the standalone compression applet. There have been problems with this method so if you see a "Short read" error let me know.
* Minor cleanupsGlenn L McGrath2002-11-131-0/+3
|
* Fail silently if a partial tar header is read as tar.bz2 is leaving trailing ↵Glenn L McGrath2002-11-051-0/+39
junk (not sure why), add some missing files