1. 9c267b8 style fixes by Denis Vlasenko · 18 years ago
  2. 8f8f268 bb_applet_name -> applet_name by Denis Vlasenko · 18 years ago
  3. 67b23e6 getopt_ulflags -> getopt32. by Denis Vlasenko · 18 years ago
  4. 97a8dd3 g[un]zip: add support for -v (verbose). by Denis Vlasenko · 18 years ago
  5. a959588 Yet another silly little byte saving. couldn't -> cannot by Denis Vlasenko · 18 years ago
  6. 20cc6d5 Remove pointless "const". Bloatcheck says 0 bytes difference. by Rob Landley · 18 years ago
  7. 22dca23 archival: added O_TRUNC so that when we overwrite files on unpack, by Denis Vlasenko · 18 years ago
  8. d921b2e Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate by Rob Landley · 18 years ago
  9. 5343747 Cleaup read() and write() variants, plus a couple of new functions like by Rob Landley · 18 years ago
  10. 801ab14 Add one-line GPL boilerplate to numerous (but not all yet) source files. by "Robert P. J. Day" · 18 years ago
  11. edd9ca5 More removal of "#if 0" content. by "Robert P. J. Day" · 18 years ago
  12. 9a202c9 Patch from Denis Vlasenko: unlzma was make files with mode 777. Tweak by Rob Landley · 19 years ago
  13. c5b1d4d Patch from Denis Vlasenko to add xstat() and use it. by Rob Landley · 19 years ago
  14. dfba741 Robert P. Day removed 8 gazillion occurrences of "extern" on function by Rob Landley · 19 years ago
  15. 6c35c7c usage bb_dev_null by "Vladimir N. Oleynik" · 19 years ago
  16. b7128c6 Cleanup patch by Bernhard Fischer, removing unnecessary includes of by Rob Landley · 19 years ago
  17. c6992fe Update my email address, document some of my tasks in the AUTHORS file by Glenn L McGrath · 21 years ago
  18. 70060d2 s/fileno\(stdin\)/STDIN_FILENO/g s/fileno\(stdout\)/STDOUT_FILENO/g by Eric Andersen · 21 years ago
  19. c7bda1c Remove trailing whitespace. Update copyright to include 2004. by Eric Andersen · 21 years ago
  20. ab77806 Use bb_getopt_ulflags, save 150 bytes. by Glenn L McGrath · 21 years ago
  21. 5699b85 Move from read_gz to the pipe()+fork() method. by Glenn L McGrath · 21 years ago
  22. cb81e64 Update a bunch of docs. Run a script to update my email addr. by Eric Andersen · 21 years ago
  23. cad5364 Major coreutils update. by Manuel Novoa III · 22 years ago
  24. bf1cc8b Make uncompress a seperate applet so it doesnt pull in all the gunzip code by Glenn L McGrath · 22 years ago
  25. 9ef0944 Allow the .Z prefix if compress support enabled by Glenn L McGrath · 22 years ago
  26. 563ac6e Report errror if the first magic character doesnt match by Glenn L McGrath · 22 years ago
  27. 5c99581 Save status so we know if to delete compressed file by Glenn L McGrath · 22 years ago
  28. 2e41d0c Fix compress support and prevent a segfault by Glenn L McGrath · 22 years ago
  29. 7ca04f3 New common unarchive code. by Glenn L McGrath · 22 years ago
  30. c3b7f7d chmod on the NEW file by Glenn L McGrath · 22 years ago
  31. 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
  32. 1ee52e8 Run through indent, use braces by Glenn L McGrath · 22 years ago
  33. d378c31 Applied vodz' patches #49 and #50 (with a small correction in runshell.c) by Robert Griebl · 22 years ago
  34. 7ac8684 gunzip'ing many files to stdout works now by Robert Griebl · 23 years ago
  35. 081df62 Don't delete source file when decompressing to stdout by Robert Griebl · 23 years ago
  36. a4a65e7 * archival/gunzip.c (gunzip_file): New. by Matt Kraai · 23 years ago
  37. d75ac02 Rework per how I did things in version in 0.60.3 so it can by Eric Andersen · 23 years ago
  38. 50e4d66 Fix email addr by Eric Andersen · 23 years ago
  39. 1f0c436 Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !. by Matt Kraai · 23 years ago
  40. c822763 Change strdup calls to xstrdup (patch from Steve Merrifield). by Matt Kraai · 23 years ago
  41. 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
  42. 06a71cc Initialise in_file to stdin, so it wont crash if no source specified by Glenn L McGrath · 23 years ago
  43. 117231c Make - read compressed data from stdin (thanks to Marius Groeger). by Matt Kraai · 24 years ago
  44. 713b398 woops, forgot the break statment by Glenn L McGrath · 24 years ago
  45. 5bcfc9b Tolerate -q argument, if -q is passed give a warning and continue rather than just fail by Glenn L McGrath · 24 years ago
  46. 04095e5 Move messages.c to libbb. Make each string in messages.c be its own .o file. by Eric Andersen · 24 years ago
  47. 5326554 Eliminate spurious warning, convert to getopt, and eliminate redundant check. by Matt Kraai · 24 years ago
  48. 96dcd19 Fix a number of problems with argument handling. by Matt Kraai · 24 years ago
  49. 5465223 Eliminate a segfault when called on an existing file with out an extension: by Matt Kraai · 24 years ago
  50. bcfeb2a Fix zcat/gunzip when reading from stdin by Glenn L McGrath · 24 years ago
  51. 7fd9294 Move unzip, gz_open, gz_close to libbb by Glenn L McGrath · 24 years ago
  52. 3a6da8c gz_open and gz_close were left in, even when BB_FEATURE_TAR_GZIP was disabled. by Eric Andersen · 24 years ago
  53. 5f2ef46 Fix zcat by Glenn L McGrath · 24 years ago
  54. ed7a776 gunzip -c works again by Glenn L McGrath · 24 years ago
  55. ae8ad35 Fixes from Robert Kaiser by Glenn L McGrath · 24 years ago
  56. 02cebeb Remove cruft by Glenn L McGrath · 24 years ago
  57. 018e9e6 Fix tar -z, calls gz_open now by Glenn L McGrath · 24 years ago
  58. 58e42d5 Major cleanup to better adhere to style guide and use standard busybox functions by Glenn L McGrath · 24 years ago
  59. 851895a Clean up more local vars which shadow globals -Erik by Eric Andersen · 24 years ago
  60. cbe31da It turns out that DODMALLOC was broken when I reorganized busybox.h by Eric Andersen · 24 years ago
  61. 67991cf This patch, put together by Manuel Novoa III, is a merge of work by Eric Andersen · 24 years ago
  62. dd19c69 Removed trailing \n from error_msg{,_and_die} messages. by Matt Kraai · 24 years ago
  63. d35c215 Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch. -Erik by Eric Andersen · 24 years ago
  64. 59ab025 #define -> static const int. Also got rid of some big static buffers. by Mark Whitley · 24 years ago
  65. 46f44d2 Support for tar -z option for uncompressing only by Glenn L McGrath · 24 years ago
  66. 00732b5 Introduce new function gunzip_init() by Glenn L McGrath · 24 years ago
  67. f57c944 Changed names of functions in utility.c and all affected files, to make by Mark Whitley · 24 years ago
  68. 3e856ce Stop using TRUE and FALSE for exit status. by Matt Kraai · 24 years ago
  69. 7918e1f Move flush_outbuf to the file in which it is used, and by doing so fix a by Matt Kraai · 24 years ago
  70. 63a8622 Cleanup of duplicated symbols -- found by compiling with by Eric Andersen · 24 years ago
  71. 207061a Fix error messages. by Matt Kraai · 24 years ago
  72. c2bf5ca General cleanup of comments, defines, includes, and global variables, removed those that arent needed, grouped those remaining at the top. by Glenn L McGrath · 24 years ago
  73. 3570a34 Renamed "internal.h" to the more sensible "busybox.h". -Erik by Eric Andersen · 24 years ago
  74. fd3741d Remove definition of basename. by Glenn L McGrath · 24 years ago
  75. 73bdf13 Fixed a stupid thinko preventing zcat from doing its job, thanks by Eric Andersen · 24 years ago
  76. e99674a Correct the stdin/stdout behavior when no args are provided. -Erik by Eric Andersen · 24 years ago
  77. 88f50b6 Some #include updates. -Erik by Eric Andersen · 24 years ago
  78. ea824fb Fixed stdin/stdout paths so things like by Eric Andersen · 24 years ago
  79. bf181b9 Extract usage information into a separate file. by Matt Kraai · 24 years ago
  80. d537a95 Use errorMsg rather than fprintf. by Matt Kraai · 24 years ago
  81. be84cd4 Always report the applet name when doing error reporting. by Matt Kraai · 24 years ago
  82. e58771e Use global applet_name instead of local versions. by Matt Kraai · 24 years ago
  83. 1e03add a few minor cleanups. -Erik by Eric Andersen · 24 years ago
  84. b610615 Updates to a number of apps to remove warnings/compile errors under libc5. by Eric Andersen · 25 years ago
  85. 330fd2b More libc portability updates, add in the website (which has not been by Erik Andersen · 25 years ago
  86. 7ab9c7e Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP by Erik Andersen · 25 years ago
  87. 59b9e87 * cp -fa now works as expected for symlinks (it didn't before) by Erik Andersen · 25 years ago
  88. 4f3f757 Latest and greatest. Some effort at libc5 (aiming towards newlib) by Erik Andersen · 25 years ago
  89. 61677fe Upates to include copyright 2000 to everything -Erik by Erik Andersen · 25 years ago
  90. 1dbe340 more minor fixes -Erik by Erik Andersen · 25 years ago
  91. 9ffdaa6 Updates -Erik by Erik Andersen · 25 years ago
  92. e49d5ec Some formatting updates (ran the code through indent) -Erik by Erik Andersen · 25 years ago
  93. fac10d7 A few minor updates. ;-) by Erik Andersen · 25 years ago
  94. 3fe39dc Some busybox updates. See the changelog for details if you care. -Erik by Erik Andersen · 25 years ago
  95. 7dc1607 Bunches of fixes. Typos, bugs, etc. by Erik Andersen · 25 years ago
  96. 4d1d011 Reworked the source so it will compile and run under glibc 2.0.7 by Erik Andersen · 25 years ago
  97. b052b47 Forgot this. by Eric Andersen · 25 years ago