- 8132e93 Fix for using '-' as the filename when reading from stdin by Glenn L McGrath · 22 years ago
- 7ca04f3 New common unarchive code. by Glenn L McGrath · 22 years ago
- a0ee881 Run through indent, use /* */ style comments, change extern to static by Glenn L McGrath · 22 years ago
- 8fc5d6d Tar inlining, #if 0 out unused function by Aaron Lehmann · 22 years ago
- f2f26e7 Added tar -cz support (creating gzipped tar files without a gzip pipe) by Robert Griebl · 22 years ago
- 1d1d2f9 Update some missing copyright notices by Eric Andersen · 23 years ago
- 02a4156 Parse the include list to writeTarFile rather than argv, fixes a bug where tar files wernt being created. by Glenn L McGrath · 23 years ago
- 8833a51 Fix condition that prevented creation of compressed files by Glenn L McGrath · 23 years ago
- b75b6e2 * archival/tar.c (tar_main): Remove unused variable. by Matt Kraai · 23 years ago
- 39fcb5a * archival/dpkg.c (create_list): Use chomp. by Matt Kraai · 23 years ago
- 1f0c436 Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !. by Matt Kraai · 23 years ago
- 31c73af Perform clean up only if CONFIG_FEATURE_CLEAN_UP is defined. by Matt Kraai · 23 years ago
- 2b1effd Write files when extracting an archive from standard input. by Matt Kraai · 23 years ago
- f3f9062 Things like 'tar -c /tmp/*' and 'tar -cO /tmp/*' where the output by Eric Andersen · 23 years ago
- 9c6b5fc Minor warning cleanups by Eric Andersen · 23 years ago
- 9fb38f6 Eliminate unused variable warnings. by Matt Kraai · 23 years ago
- c265b17 Wrap exclude_file() inside a #ifdef CONFIG_FEATURE_TAR_EXCLUDE block by Eric Andersen · 23 years ago
- ef0eab5 Recovering from my previous commit by Glenn L McGrath · 23 years ago
- bdfd0d7 Major rework of the directory structure and the entire build system. -Erik by Eric Andersen · 23 years ago
- 4bef7b4 unarchive function changed to support both exclude and include lists, applets that use unarchive changed to match. by Glenn L McGrath · 23 years ago
- 051eee6 Reverse part of previous change.... i think it was the wrong approach... im lost by Glenn L McGrath · 23 years ago
- d642a67 Match subdirectories of included/excluded files by Glenn L McGrath · 23 years ago
- 0e76618 Superficial changes to make the exclude/include code easier to understand by Glenn L McGrath · 23 years ago
- f86bbfa Fix tar segfault when include list is empty and exclude list is not. by Matt Kraai · 23 years ago
- 2e772ed Change extraction/list code to use common unarchive code. by Glenn L McGrath · 23 years ago
- ac20ce1 Canonicalize dirname(3) behavior. by Matt Kraai · 23 years ago
- b028e08 Move setvbuf calls from gz_open() to calling functions, setvbuf is only supposed to be called prior to opening the stream, glibc tolerates later use, uclibc doesnt. by Glenn L McGrath · 23 years ago
- 5710f9f Read 20 512-byte blocks at a time (like GNU tar). by Matt Kraai · 23 years ago
- 623cfa9 Remove a redundant call to mkdir. by Matt Kraai · 23 years ago
- 8370976 comment cleanup by Tim Riker · 23 years ago
- ceeff73 Rewrote mkdir (and touched lots of things in the process). by Matt Kraai · 23 years ago
- 091781e Support tar -C, per bug #1176 -Erik by Eric Andersen · 23 years ago
- ea4abff Add in (and ignore) tar -p, since we preserver permissions automatically. by Eric Andersen · 23 years ago
- aff5e2e it turs out, there was a nasty tar bug where bb tar would create leading dirs by Eric Andersen · 23 years ago
- 8e74bf9 Changed gz_open to ruturn a stream by Glenn L McGrath · 23 years ago
- cb2a372 Revert the patch from Konstantin Boldyshev <konst@linuxassembly.org> to never by Eric Andersen · 23 years ago
- 77d9268 Patch from larry to fix some grammar errors. by Eric Andersen · 23 years ago
- 7f7348b Correctly remove leading slashes upon extraction (thanks to Marius Groeger). by Matt Kraai · 23 years ago
- a17b363 Do not ever change permissions on existing directories, only by Eric Andersen · 23 years ago
- 28355a3 Per some comments from Lars Kellogg-Stedman <lars@larsshack.org>, by Eric Andersen · 24 years ago
- e0244b0 Skip headers with empty filenames, rather than stopping. by Matt Kraai · 24 years ago
- 8a63326 Made new xreadlink function for libbb and changed applets to use it instead of by Mark Whitley · 24 years ago
- af166e7 Logic reversal for last_char_is by Glenn L McGrath · 24 years ago
- c1bdffe Another nice cleanup from Larry. This adds a new last_char_is() function and by Eric Andersen · 24 years ago
- 04095e5 Move messages.c to libbb. Make each string in messages.c be its own .o file. by Eric Andersen · 24 years ago
- 2975a34 readTarFile changed from exter nto static by Glenn L McGrath · 24 years ago
- 48081f8 replace getOctal with strtol( , NULL, 8) saves 100 Bytes by Glenn L McGrath · 24 years ago
- 7fd9294 Move unzip, gz_open, gz_close to libbb by Glenn L McGrath · 24 years ago
- ae8ad35 Fixes from Robert Kaiser by Glenn L McGrath · 24 years ago
- 02cebeb Remove cruft by Glenn L McGrath · 24 years ago
- 9233959 Remove tar_unzip_init() not needed any more, uses gz_open instead by Glenn L McGrath · 24 years ago
- 018e9e6 Fix tar -z, calls gz_open now by Glenn L McGrath · 24 years ago
- 0cbc8cf Gunzip changes broke tar -z support (woops) by Glenn L McGrath · 24 years ago
- 3e6ff90 A cleanup patch from Jeff Garzik to static-ify a number of by Eric Andersen · 24 years ago
- cbe31da It turns out that DODMALLOC was broken when I reorganized busybox.h by Eric Andersen · 24 years ago
- 67991cf This patch, put together by Manuel Novoa III, is a merge of work by Eric Andersen · 24 years ago
- 05e782d Fix wget error message and add (and use) chomp library function. by Matt Kraai · 24 years ago
- dd19c69 Removed trailing \n from error_msg{,_and_die} messages. by Matt Kraai · 24 years ago
- 8ec10a9 Fix up copyright msgs. Bump version to 0.49 in preparation for by Eric Andersen · 24 years ago
- ed3ef50 Fix header file usage -- there were many unnecessary header files included in by Eric Andersen · 24 years ago
- 59ab025 #define -> static const int. Also got rid of some big static buffers. by Mark Whitley · 24 years ago
- 3b3f5c3 Use getopt (or getopt_long). by Matt Kraai · 24 years ago
- 8f8dab9 Fixed listed files to extract to be more like GNU. Reported by Deon George. by Matt Kraai · 24 years ago
- 1d26943 Close unused pipe handle before fork (for tar -z). by Glenn L McGrath · 24 years ago
- 541ffe3 Fix ownership of extracted directories. by Matt Kraai · 24 years ago
- be7499c Behave like GNU tar when matching excluded files. by Matt Kraai · 24 years ago
- 7541e3a add dpkg-deb command by Glenn L McGrath · 24 years ago
- e80a263 Be sure to read from the given path, not the one used in the header. by Matt Kraai · 24 years ago
- a1f9775 Fix tar handling of absolute paths and excluded directories. by Matt Kraai · 24 years ago
- 1fa1ade Change calls to error_msg.* and strerror to use perror_msg.*. by Matt Kraai · 24 years ago
- 4836fd4 Patch from Matt Kraai: by Eric Andersen · 24 years ago
- bd193a4 Fix from Matt Kraai -- a better way to NULL terminate strings for the by Eric Andersen · 24 years ago
- 46f44d2 Support for tar -z option for uncompressing only by Glenn L McGrath · 24 years ago
- f57c944 Changed names of functions in utility.c and all affected files, to make by Mark Whitley · 24 years ago
- 3d957c8 Patch from Jim Gleason <jimg@lineo.com> to fix tar so it no longer breaks hard by Eric Andersen · 24 years ago
- 8cede00 Patch to add in the -X option and fix the --exclude bug, originally by by Eric Andersen · 24 years ago
- 02f3b2e Make tar shutup on compile by Eric Andersen · 24 years ago
- 3e856ce Stop using TRUE and FALSE for exit status. by Matt Kraai · 24 years ago
- c119ab9 Note an error if we are unable to list/extract specified files. by Matt Kraai · 24 years ago
- ab8f9e2 Check for archive errors even for files we aren't extracting. by Matt Kraai · 24 years ago
- 3c5ee9a Grammer fix. Changed "longer then" to "longer than". Fix thanks to Jim by Eric Andersen · 24 years ago
- d8ad76c Fix some bugs reported by Jim Gleason <jimg@lineo.com> and others I introduced. by Matt Kraai · 24 years ago
- 62f987e Fix a thinko. Patch from Justus Pendleton <justus@acm.org> by Eric Andersen · 24 years ago
- 3570a34 Renamed "internal.h" to the more sensible "busybox.h". -Erik by Eric Andersen · 24 years ago
- 1b1cfde Fix bug#1043 -- hanlde long filenames and links (in this case, by complaining by Eric Andersen · 24 years ago
- 0102a9f Fix an obscure option parsing bug. by Eric Andersen · 24 years ago
- 46a98df Reverted my conversion of tar to getopt to ensure tar can by Eric Andersen · 24 years ago
- b2f36af Updated stdin/stdout treatment to match that of gnu tar. by Matt Kraai · 24 years ago
- 6fc2a7d Reorganize listing code. by Matt Kraai · 24 years ago
- 82cfbad Allow non-verbose listing to work. by Matt Kraai · 24 years ago
- 43c8c38 Allow compilation when not using BB_FEATURE_TAR_EXCLUDE, and fix by Matt Kraai · 24 years ago
- b92223b Allow selective extraction and listing of files. And fix an unchecked by Matt Kraai · 24 years ago
- da542f3 Argh. I *will* compile before checking in. by Matt Kraai · 24 years ago
- f446297 Don't unlink files if we are extracting to stdout. by Matt Kraai · 24 years ago
- fdd5103 Merge in two patches from Dave Cinege: by Eric Andersen · 24 years ago
- d570468 Fix from Robert Kaiser for stdin behavior. -Erik by Eric Andersen · 24 years ago
- bf181b9 Extract usage information into a separate file. by Matt Kraai · 24 years ago
- be84cd4 Always report the applet name when doing error reporting. by Matt Kraai · 24 years ago
- 8845adc * Fixed tar creation support when reading from stdin ('tar -cf - . ') by Eric Andersen · 24 years ago
- 1c314ad * Fixed a _horrible_ bug where 'tar -tvf' could unlink by Eric Andersen · 24 years ago