aboutsummaryrefslogtreecommitdiff
path: root/archival/libunarchive (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* typo, thanks, Bernhard Fischer"Vladimir N. Oleynik"2005-09-061-1/+1
|
* Anand Avati hit an integer overflow problem in our unzip code.Rob Landley2005-08-311-1/+1
|
* Bernhard Fischer says: use xmalloc() instead of malloc()Mike Frysinger2005-08-161-1/+1
|
* punt unused variableMike Frysinger2005-07-301-3/+0
|
* use toplevel ARFLAGS and update default ARFLAGS to be quietMike Frysinger2005-07-271-1/+1
|
* applying fixes from: Paul Fox2005-07-201-79/+81
| | | | | 0000142: unzip enhancements
* applying fix for:Paul Fox2005-07-201-0/+10
| | | | 0000262: tar -x doesn't believe it has reached the end of archive
* fix printf warningMike Frysinger2005-04-201-1/+1
|
* Patch from Bernhard Fischer to make a bunch of symbols staticEric Andersen2005-04-162-7/+8
| | | | which were otherwise cluttering the global namespace.
* When filling the bit buffer, gzip decompression apparently never checked for ↵Manuel Novoa III2005-03-011-1/+4
| | | | end of file, causing it to hang on corrupted input.
* Don't document compiler warnings. _FIX_ compiler warnings.Rob Landley2004-11-161-12/+13
|
* Make certain clients of bb_make_directory default to honoringEric Andersen2004-10-131-1/+1
| | | | the user's umask
* egor duda writes:Eric Andersen2004-10-082-6/+12
| | | | | | | | | | | | | | | | | | | | | | | | Hi! I've created a patch to busybox' build system to allow building it in separate tree in a manner similar to kbuild from kernel version 2.6. That is, one runs command like 'make O=/build/some/where/for/specific/target/and/options' and everything is built in this exact directory, provided that it exists. I understand that applyingc such invasive changes during 'release candidates' stage of development is at best unwise. So, i'm currently asking for comments about this patch, starting from whether such thing is needed at all to whether it coded properly. 'make check' should work now, and one make creates Makefile in build directory, so one can run 'make' in build directory after that. One possible caveat is that if we build in some directory other than source one, the source directory should be 'distclean'ed first. egor
* Fixup some warningsEric Andersen2004-08-281-0/+2
|
* BusyBox has no business hard coding the number of major and minor bits for aEric Andersen2004-07-262-3/+4
| | | | | | | | | dev_t. This is especially important now that the user space concept of a dev_t and the kernel concept of a dev_t are divergant. The only bit of user space allowed to know the number of major and minor bits is include/sys/sysmacros.h (i.e. part of libc). When used with a current C library and a 2.6.x kernel, this fix should allow BusyBox to support wide device major/minor numbers. -Erik
* Fix symlink handling and small memory leakGlenn L McGrath2004-04-291-0/+5
|
* Update my email address, document some of my tasks in the AUTHORS fileGlenn L McGrath2004-04-251-1/+1
|
* Larry Doolittle writes:Eric Andersen2004-04-145-22/+22
| | | | | | | | | | | | | | | | | | | | | | This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry
* Add a comment explaining why we have to check for an extra \nGlenn L McGrath2004-04-091-1/+3
|
* rename uncompress.c to decompress_uncompress.cEric Andersen2004-04-053-1279/+4
| | | | rename unzip.c to decompress_unzip.c
* Add missing include filesEric Andersen2004-03-271-0/+1
|
* s/fileno\(stdin\)/STDIN_FILENO/gEric Andersen2004-03-271-1/+1
| | | | s/fileno\(stdout\)/STDOUT_FILENO/g
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-1512-48/+48
|
* Sometimes i get carried away with the use of function pointers, im sureGlenn L McGrath2004-02-211-1/+1
| | | | it seemed like a good idea at the time.
* Fix up hard linksGlenn L McGrath2004-02-201-3/+5
|
* A strict interpretation of the ustar format requires the type flag to beGlenn L McGrath2004-02-201-11/+8
| | | | | interpreted, we cannot depend on the file type being set in the mode field.
* Add extra comments, freakout if a pax archive is encoutered.Glenn L McGrath2004-02-191-9/+24
|
* Remove debuggingGlenn L McGrath2004-02-171-2/+0
|
* Dont strip trailing '/' until _after_ i test to set if its there !Glenn L McGrath2004-02-171-12/+17
|
* Fix usage with libraries, skip symbol table.Glenn L McGrath2004-01-041-1/+1
|
* Fix a bug of mine where extracting files to stdout would extract toGlenn L McGrath2003-12-221-1/+1
| | | | much, modified patch from Bastian Blank
* Don't hose up perms for files that happen to have symlinksEric Andersen2003-12-211-2/+4
| | | | | in the tarball that point to them. -Erik
* Fix tar hard linksGlenn L McGrath2003-11-272-5/+5
|
* As we no longer use function pointers for read in common archiving codeGlenn L McGrath2003-11-219-99/+7
| | | | | | | archive_xread can be replaced with bb_full_read, and archive_copy_file with bb_copyfd* bb_copyfd is split into two functions bb_copyfd_size and bb_copyfd_eof, they share a common backend.
* Use safe readGlenn L McGrath2003-11-212-2/+2
|
* Remove unused functionGlenn L McGrath2003-11-202-31/+0
|
* Fix tar-handles-nested-exclude testcaseGlenn L McGrath2003-11-201-0/+8
|
* Dont attempt to unlink directoriesGlenn L McGrath2003-11-201-1/+1
|
* tar -Z, uncompress supportGlenn L McGrath2003-11-183-10/+1
|
* Dont close original file handle, we may need it later.Glenn L McGrath2003-11-181-3/+4
|
* Dont free filename, its needed in the extracted files list.Glenn L McGrath2003-11-171-2/+1
|
* Fix a bug where cpio wouldnt work unless -u was specifiedGlenn L McGrath2003-11-151-10/+8
|
* Move from read_gz to the pipe()+fork() method.Glenn L McGrath2003-11-1511-258/+142
| | | | | | | | | 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.
* Fix memory leaksGlenn L McGrath2003-11-151-0/+3
|
* Keep trying to find a good header, if we exit it will cause .tar.gzGlenn L McGrath2003-11-141-1/+1
| | | | files to compute incorrect crc and length for gzip
* Fix build error with tar -jGlenn L McGrath2003-11-141-1/+1
|
* 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
|
* Read in blocks rather than one char at a time, greatly improves speedGlenn L McGrath2003-11-141-4/+23
|
* This appears to be the correct fix to make CONFIG_FEATURE_DEB_TAR_BZ2Eric Andersen2003-11-071-3/+2
| | | | | support compile. Glenn, you may want to verify this. -Erik