1. cad5364 Major coreutils update. by Manuel Novoa III · 21 years ago
  2. 826b48b Woops, my gunzip fix broke unzip, these cant be static by Glenn L McGrath · 21 years ago
  3. 1d21fb3 Moved to libunarchive/unzip.c by Glenn L McGrath · 21 years ago
  4. cc61692 Fix endian probelm on PPC, i had different types for an extern variable. by Glenn L McGrath · 21 years ago
  5. 21110a0 Fix long standing bug with old gnu tar files, add a check so tar will by Glenn L McGrath · 21 years ago
  6. f4b273c A cleaner cleanup that avoids passing an off_t to scanf by Eric Andersen · 22 years ago
  7. 9701411 squash a warning by Eric Andersen · 22 years ago
  8. b323162 Use libbb/get_line_from_file instead of getline by Glenn L McGrath · 22 years ago
  9. 38386d7 include busybox after libc includes by Glenn L McGrath · 22 years ago
  10. b72a735 rpm applet by Laurence Anderson by Glenn L McGrath · 22 years ago
  11. 66125c8 Move add_to_list from libunarchive to libbb so it can be of more general use (eg ifupdown). Changed the name to llist_add_to as i plan on adding more llist_ functions as needed (e.g. llist_free). by Glenn L McGrath · 22 years ago
  12. 0337c46 Add some help descriptions by Glenn L McGrath · 22 years ago
  13. 5360182 Kill the now obsolete docs/Configure.help file, and move all existing by Eric Andersen · 22 years ago
  14. c9f20d9 Yet another major rework of the BusyBox config system, using the considerably by Eric Andersen · 22 years ago
  15. 6f9b45b Unlink before mkdir, mknod, symlink to overwrite by Glenn L McGrath · 22 years ago
  16. b963875 Move compare_string_array to libbb by Glenn L McGrath · 22 years ago
  17. f3faf41 fix warning by Glenn L McGrath · 22 years ago
  18. a170e1c Change if(x)free(x); to free(x); by Aaron Lehmann · 22 years ago
  19. d211214 Use error_msg instead of printf(stderr by Glenn L McGrath · 22 years ago
  20. fedbfe4 Style by Glenn L McGrath · 22 years ago
  21. ec87d37 Check that one and only one of the [cxt] options is given by Glenn L McGrath · 22 years ago
  22. f66de64 Use vfork instead of fork, some more cleanup from Vladimir N. Oleynik by Glenn L McGrath · 22 years ago
  23. eda4f53 Add an input buffer (currently 32kB) to speed things up heaps, it still requires 25% longer to decompress as compared to upstream. by Glenn L McGrath · 22 years ago
  24. b7a76df Fix long filename support by Glenn L McGrath · 22 years ago
  25. 83bf47c Speed and memory usage improvements from Laurence Adnerson by Glenn L McGrath · 22 years ago
  26. 0126fda read_gz patch 3 from Laurence Anderson by Glenn L McGrath · 22 years ago
  27. a0d395e Use read_gz, remove fork() woohoo! by Glenn L McGrath · 22 years ago
  28. fd73b8c Patch from Laurence Anderson to provide a read_gz function, doesnt require fork(), pipe(), consistent with read_bz2 and more flexible. by Glenn L McGrath · 22 years ago
  29. 36233bd Remove #defines around get_header_ptr, we allways need it. by Glenn L McGrath · 22 years ago
  30. 02fcd2d Allow short reads as we are looping anyway. by Glenn L McGrath · 22 years ago
  31. 2666679 Dont chdir untill after we open the archive by Glenn L McGrath · 22 years ago
  32. e356883 Minor cleanups by Glenn L McGrath · 22 years ago
  33. 034c371 Reduce block size to 512 to prevent short read's when reading from a pipe by Glenn L McGrath · 22 years ago
  34. 5703341 #ifdef, not just #if... grrr by Glenn L McGrath · 22 years ago
  35. f6bf7a0 Fix reading from stdin (me), Fix tar segfault when no arguments specified (Geoffrey Lee) by Glenn L McGrath · 22 years ago
  36. 62d2882 Use a switch instead of successive if (strcmp()) statments. by Glenn L McGrath · 22 years ago
  37. 747381c Split deb_extract() into more generic functions by Glenn L McGrath · 22 years ago
  38. ea12202 Terminate the buffer with a '\0' by Glenn L McGrath · 22 years ago
  39. d8d1191 Support for bziped debs, i.e. use .tar.bz2 instead .tar.gz internally by Glenn L McGrath · 22 years ago
  40. 7f2a953 Fail silently if a partial tar header is read as tar.bz2 is leaving trailing junk (not sure why), add some missing files by Glenn L McGrath · 22 years ago
  41. 18bbca1 enable .tar.bz2 for dpkg-deb by Glenn L McGrath · 22 years ago
  42. 8e94098 Change filter paramaters, filters can be more powefull now by Glenn L McGrath · 22 years ago
  43. f92caa7 Call lseek directly rather than via data_align() by Glenn L McGrath · 22 years ago
  44. 237ae42 Abstract read and seek in unarchiving code, convert bunzip to file descriptors, support tar -j by Glenn L McGrath · 22 years ago
  45. 2fc54a9 Fix #define syntax by Glenn L McGrath · 22 years ago
  46. 6ab32eb Move data_extract_all_prefix to dpkg, its only used there. by Glenn L McGrath · 22 years ago
  47. b8e556e Add copyright notice and license, use strcat+strcpy instead of sprintf by Glenn L McGrath · 22 years ago
  48. 9c60b29 Use xread_char to save a few bytes, fix indenting of comments by Glenn L McGrath · 22 years ago
  49. 60bce49 Move bunzip2 idecompression code to libunarchive by Glenn L McGrath · 22 years ago
  50. bf1cc8b Make uncompress a seperate applet so it doesnt pull in all the gunzip code by Glenn L McGrath · 22 years ago
  51. d6aec86 Allow short reads when filling compress buffer by Glenn L McGrath · 22 years ago
  52. 9ef0944 Allow the .Z prefix if compress support enabled by Glenn L McGrath · 22 years ago
  53. b2f67b4 Make it a fatal error if bad chksum or crc, if not we should return an error code by Glenn L McGrath · 22 years ago
  54. 563ac6e Report errror if the first magic character doesnt match by Glenn L McGrath · 22 years ago
  55. 18921bd A bugfix from Danny Lepage: by Eric Andersen · 22 years ago
  56. 9ffd577 Move unzip.c uncompress.c from libbb to archiveal/libunarchive by Glenn L McGrath · 22 years ago
  57. 61b7904 Update dpkg to use new unarchive code by Glenn L McGrath · 22 years ago
  58. c5c1a8a Fix exclude/include problem by Glenn L McGrath · 22 years ago
  59. 05fa661 Find a string in a list by Glenn L McGrath · 22 years ago
  60. 25bca95 Remove entries from the accept list as they are matched so we can determine if any files that were specified in the list wernt found. by Glenn L McGrath · 22 years ago
  61. 98f824a Dont use absolute pathname (dunno why i did that), fix tar filename/stdin problems by Glenn L McGrath · 22 years ago
  62. 934805a Put bac kthe code that handles cases where a '-' wasnt specified prior to the options. by Glenn L McGrath · 22 years ago
  63. 2a2ab14 Fix an obvious thinko -Erik by Eric Andersen · 22 years ago
  64. 71ae64b last_patch61 from vodz: by Eric Andersen · 22 years ago
  65. 2983330 Fix segfault when testing if reaidng from stdin "-" by Glenn L McGrath · 22 years ago
  66. 02e6ba9 Vodz' last_patch57: Hi, Erik. by Eric Andersen · 22 years ago
  67. d9d47c3 Patch from Konstantin Isakov <ikm@pisem.net>: by Eric Andersen · 22 years ago
  68. 5c99581 Save status so we know if to delete compressed file by Glenn L McGrath · 22 years ago
  69. 8132e93 Fix for using '-' as the filename when reading from stdin by Glenn L McGrath · 22 years ago
  70. 2e41d0c Fix compress support and prevent a segfault by Glenn L McGrath · 22 years ago
  71. a47a3ea Fix simple define problem by Glenn L McGrath · 22 years ago
  72. 69eab26 Remove files made obsolete by new unarchiving code by Glenn L McGrath · 22 years ago
  73. 7ca04f3 New common unarchive code. by Glenn L McGrath · 22 years ago
  74. 6c32a8a Modified so that it "works" for archs other than i386... arm in particular. by Manuel Novoa III · 22 years ago
  75. 8fede28 Patch from Matthias Lang <matthias@corelatus.se> to fix gunzip by Eric Andersen · 22 years ago
  76. b3c4e9a Support for GNU style long filename and linknames by Glenn L McGrath · 22 years ago
  77. c3b7f7d chmod on the NEW file by Glenn L McGrath · 22 years ago
  78. abac53b Reorganise, make it just one function, remove -v option it didnt work properly anyway, dont setvbuf it doesnt make any difference in performance. by Glenn L McGrath · 22 years ago
  79. 1ee52e8 Run through indent, use braces by Glenn L McGrath · 22 years ago
  80. 4534af2 replace some global const ints with defines by Glenn L McGrath · 22 years ago
  81. 0775a07 Specify cast by Glenn L McGrath · 22 years ago
  82. 4cc2e5e Remove duplicate variable definition by Glenn L McGrath · 22 years ago
  83. 9fef17d Run through indent, fix comments by Glenn L McGrath · 22 years ago
  84. 99b1254 Run through ident, fix comments by Glenn L McGrath · 22 years ago
  85. a0ee881 Run through indent, use /* */ style comments, change extern to static by Glenn L McGrath · 22 years ago
  86. d827e8b Run through indent by Glenn L McGrath · 22 years ago
  87. 7576270 Honour the USTAR prefix field, this enables a 155 byte path length plus the normal 100 byte filename. by Glenn L McGrath · 22 years ago
  88. 8fc5d6d Tar inlining, #if 0 out unused function by Aaron Lehmann · 22 years ago
  89. 1d23f3a Enable support for the old tar header format, enable via menu's by Glenn L McGrath · 22 years ago
  90. f2f26e7 Added tar -cz support (creating gzipped tar files without a gzip pipe) by Robert Griebl · 22 years ago
  91. d378c31 Applied vodz' patches #49 and #50 (with a small correction in runshell.c) by Robert Griebl · 22 years ago
  92. 2276d83 Fixup warnings and undefined operations that show up in gcc-3.1 -Erik by Eric Andersen · 22 years ago
  93. 9031481 inline many functions that are only called once. saves about 300 bytes by Aaron Lehmann · 22 years ago
  94. 8c26fbe remove cleanUpAndFail, and replace it with exit(). because that's what by Aaron Lehmann · 22 years ago
  95. 9f92d5f Major revamp. I've been trying to clean up the code. the bzerror stuff by Aaron Lehmann · 22 years ago
  96. a94a06a Patch from Randolfe Averty to fixup package conflict checks, cleanup some memory leaks and reorganise dependency checking. by Glenn L McGrath · 22 years ago
  97. 94a6a95 Support old-style compress (.Z) files via libbb / unzip( ) calls by Robert Griebl · 22 years ago
  98. f6495eb Support old-style compress (.Z) files via libbb / unzip( ) calls by Robert Griebl · 22 years ago
  99. 7ac8684 gunzip'ing many files to stdout works now by Robert Griebl · 22 years ago
  100. 081df62 Don't delete source file when decompressing to stdout by Robert Griebl · 22 years ago