1. 87c06e1 find needs "c" suffix to -size. by Rob Landley · 10 years ago
  2. 0aad9e4 find_in_path() is supposed to work with a NULL path, but didn't. Fix it. by Rob Landley · 10 years ago
  3. 8115fc1 Forgot to check in strstart(). by Rob Landley · 10 years ago
  4. 1bc5224 Add generic_signal() handler, which sets toys.signal and writes byte to toys.signalfd if set. by Rob Landley · 10 years ago
  5. 48c172b Switch human_readable() to just outputing decimal kilo/mega/gigabytes, make du use it, move it from lib/pending.c to lib.c. by Rob Landley · 10 years ago
  6. 26b2188 In function readfile(), the buffer buf is free'd when readall() fails. This free can cause a crash, if the buffer passed by user of function is not malloc'ed one. by Ashwini Sharma · 10 years ago
  7. 02f5a30 Fix mkdir -p with absolute paths. by Rob Landley · 11 years ago
  8. ca1b60e Move mkpathat to lib, remove redundant function used by patch. by Rob Landley · 11 years ago
  9. a8b88fe Add "volatile" annotation to peek/poke to stop potential optimizer overreach. by Rob Landley · 11 years ago
  10. 4dd800c Fix another bug reported by Ashwini Sharma. by Rob Landley · 11 years ago
  11. 1fb3ae7 Various cleanups found by Tom Sparrow's static analysis. by Rob Landley · 11 years ago
  12. db1009d Move names_to_pid from pending to lib. by Rob Landley · 11 years ago
  13. dbbd3d6 Doing math on void pointers isn't portable, reported by Nathan McSween. by Rob Landley · 11 years ago
  14. b5e7416 Oops, cleaned up ifconfig uses atolx_range() instead of get_int_list(). Check that in. by Rob Landley · 11 years ago
  15. 10bdaa4 Tweak terminal_size to never set either to 0, and return true/false whether it could determine at least one coordinate. by Rob Landley · 11 years ago
  16. c9cc530 Refactor terminal querying. by Rob Landley · 11 years ago
  17. bc382be Fix -t c0 and -J as reported by heehooman at gmail on the list. by Rob Landley · 11 years ago
  18. 8fdcfdb Introduce libbuf analogous to toybuf but for use by lib/*.c. Change readfile() semantics to be able to read into an existing buffer, or malloc its own if that's NULL. by Rob Landley · 11 years ago
  19. f538f42 Remove itoa/utoa, let libc do this with sprintf. by Rob Landley · 11 years ago
  20. 455865a Rewrite pmap to be simpler and match other implementation's output more closely. by Rob Landley · 11 years ago
  21. 035f27a Achille Fouilleul pointed out that fdlength wasn't returning the right length in the binary search case. by Rob Landley · 11 years ago
  22. d390493 Split lib/xwrap.c from lib/lib.c by Rob Landley · 11 years ago
  23. 87aef24 New stuff added to lib.c needs review too, so make a lib/pending.c and move several functions to it. by Rob Landley · 11 years ago
  24. e999ca0 add grep by Strake · 11 years ago
  25. 5583030 Add xexit() and make error_exit() use it. by Rob Landley · 11 years ago
  26. 5a26a86 Stat cleanup. by Rob Landley · 11 years ago
  27. 6b28341 Enable readfile() and add peek() and poke() functions. by Rob Landley · 11 years ago
  28. 6a921ee xioctl() error message should use hex ioctl number; that's what headers list. by Rob Landley · 11 years ago
  29. acede57 Fix xabspath when last path component exists but we haven't got permissions to open it (ala readlink -f /dev/sda as a normal user). Spotted by Ashwini Sharma. by Rob Landley · 11 years ago
  30. 5a221e6 Add library function for the file permission formatting in ls and stat by Felix Janda · 11 years ago
  31. f015344 Add posix headers to toynet.h, move xioctl() to lib.c, introduce lib/net.c and move xsocket() to it. by Rob Landley · 11 years ago
  32. be93c91 More ifconfig cleanup. by Rob Landley · 11 years ago
  33. 36ffc5a Move guts of help command into show_help() in lib/help.c, with config TOYBOX_HELP controlling infrastructure. by Rob Landley · 12 years ago
  34. 2279108 Fix -in behavior: descend into existing directory without prompting, show full path in error messages, actually overwrite when answering yes to -i. by Rob Landley · 12 years ago
  35. 7c0e280 Fix xabspath() resolving symlink after .., and properly detecting failure for last entry after nondir. by Rob Landley · 12 years ago
  36. 662a267 Have error_msg() and friends set TT.exitval to 1 if it's still 0, clean out other places that were setting it that no longer need to. by Rob Landley · 12 years ago
  37. ca4035b Extend killall with support for -v and -i by Elie De Brauwer · 12 years ago
  38. 7c6209d Adding -s (single shot) and -o (omit pids) options to pidof by Elie De Brauwer · 12 years ago
  39. db8eb32 Make yesno() always read from stdin and write to stderr. (If we need to find our tty, open /dev/tty, but existing users don't.) by Rob Landley · 12 years ago
  40. 939fa74 Add expand command as described in POSIX-2008. Erratum: Do not handle backspace. by Jonathan Clairembault · 12 years ago
  41. fe91e68 Remove readlink -m for being poorly defined ("readlink -m /dev/null/and/more" answers what question, exactly?), rewrite xabspath() to work right and not depend on realpath, fix subtle longstanding bug in llist_traverse(). by Rob Landley · 12 years ago
  42. bd2e227 Update readlink so -f works. Add -menq while there. by Rob Landley · 12 years ago
  43. 734b530 Add cut from Jason Kyungwan Han. by Rob Landley · 12 years ago
  44. caf39c2 Add rebound support to intercept error_exit() and longjmp instead. by Rob Landley · 12 years ago
  45. 7aa651a Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style. by Rob Landley · 12 years ago
  46. b77293f Fix thinko in xpidfile() by Rob Landley · 12 years ago
  47. 1a0eedf Add du command. by Ashwini Kumar · 12 years ago
  48. c52db60 Add signal handler to clean up tempfile. by Rob Landley · 12 years ago
  49. 07d79af Workaround longstanding glibc/ld bug, ala http://sources.redhat.com/bugzilla/show_bug.cgi?id=3400, which prevents "./toybox | wc" from producing any output when toybox was statically linked. by Rob Landley · 12 years ago
  50. 31f49e7 Make chmod +w respect umask, implement +s and +t, fix ls to show suid/sgid/stid without x bit. by Rob Landley · 12 years ago
  51. 2037b83 New infrastructure for od (oops). by Rob Landley · 12 years ago
  52. b8ef889 Add NOP b (byte) suffix to atolx() since od needs it. by Rob Landley · 12 years ago
  53. 285019a Minor code refactoring. by Rob Landley · 12 years ago
  54. 9835622 Feeding -1 to xdup() isn't an error. by Rob Landley · 12 years ago
  55. 67a069d Update chmod to work with new dirtree, and fix bugs in string_to_mode(). by Rob Landley · 12 years ago
  56. eec4637 Add xrealpath() at suggestion of Ashish Briggers. by Rob Landley · 12 years ago
  57. b6f601e First pass at a complete rewrite of string_to_mode(). (It compiled!) by Rob Landley · 12 years ago
  58. eb7ea22 Rewrite dirtree so we don't need readdir, scandir, and fts.h. Rewrite ls (from scratch) to use new dirtree infrastructure. (This breaks everything else that currently uses dirtree.) by Rob Landley · 13 years ago
  59. f78c63a Using /dev/tty for yesno() is wrong because yes 'n' | cp -ial needs to work. by Rob Landley · 13 years ago
  60. cf6bcb2 Unwind gratuitous macros. by Rob Landley · 13 years ago
  61. 05744b3 Add string to mode_t parser by Daniel Walter · 13 years ago
  62. ee00a7f Remove "feature test macros", replace non-portable fdprintf() with standard fprintf(). by Rob Landley · 13 years ago
  63. b7529b6 More stabs at getting #includes right, and moving off of deprecated functions. by Rob Landley · 13 years ago
  64. f793d53 Upgrade yesno() and make cp -i use it. by Rob Landley · 13 years ago
  65. 2dd50ad Factor out common code between killall/kill and move it to lib/lib.c, plus cleanups on kill.c. by Rob Landley · 13 years ago
  66. 2b54b1a Nathan McSween convinced me compilers that inline memset() can optimize the bzero case pretty well. by Rob Landley · 13 years ago
  67. f42e11b Cleanups to pidof (including some global infrastructure shared with killall). by Rob Landley · 13 years ago
  68. ff9ee8f Add killall by Andreas Heck, and factor out common pid code to lib.h. by Rob Landley · 13 years ago
  69. 5e6dca6 Make atolx() error_exit() if fed a string that doesn't convert entirely into an integer. by Rob Landley · 13 years ago
  70. 26e7b5e Quick and dirty terminal_size() and yesno() functions, both of which need to be improved. by Rob Landley · 13 years ago
  71. f265d04 Bugfix (spotted by Nathan McSween): xread can't detect <0 if the return type is stored in an unsigned variable. by Rob Landley · 13 years ago
  72. ad63f4b Forgot to check in loopfiles_rw changes needed by truncate. by Rob Landley · 13 years ago
  73. 8d43d91 xreadall() returns void... how does that even compile? by Rob Landley · 13 years ago
  74. e0377fb Add TOYBOX_SUID. by Rob Landley · 15 years ago
  75. 1e01cd1 Correct return types of xstrdup() and xstrndup() by Rob Landley · 15 years ago
  76. d6b2613 Fix bug spotted by Jean-Christphe Dubois: reserve space for null terminator. by Rob Landley · 16 years ago
  77. ddae5e9 Fix thinko. by Rob Landley · 16 years ago
  78. 5247671 Add mkswap. by Rob Landley · 16 years ago
  79. b15b8fa Add -N, -I, -L, and -P options to cksum. by Rob Landley · 16 years ago
  80. 7e849c5 Check in crc_init needed by cksum. (Oops.) by Rob Landley · 16 years ago
  81. e824ed1 Tweak from Roberto Foglietta. by Rob Landley · 16 years ago
  82. f15387d Roberto Foglietta pointed out that readall() needs fdlength() to restore by Rob Landley · 16 years ago
  83. 15b2315 Bug spotted by Roberto Foglietta: at EOF readall() should return count, not len. by Rob Landley · 16 years ago
  84. 2bfaaf2 Add "tee" command. by Rob Landley · 16 years ago
  85. 59f490c Fix which (the meaning of -a was reversed, and it was finding the _last_ hit). by Rob Landley · 16 years ago
  86. 988abb3 Update mdev to work around the newest sysfs api breakage in the 2.6.25 kernel. by Rob Landley · 16 years ago
  87. 3fc4e0f Teach get_rawline() to continue until a configurable char, and xstrndup() by Rob Landley · 17 years ago
  88. f641854 Add spaces after some commas (from Charlie Shepherd). by Rob Landley · 17 years ago
  89. 94dd3e7 Remove extra newlines on error_paths by Charlie Shepherd · 17 years ago
  90. 54524c9 Fix filename in header by Charlie Shepherd · 17 years ago
  91. 12138e4 Teach perror_exit() to take a NULL argument when we just want "command: error". by Rob Landley · 17 years ago
  92. 55928b1 Move NEWTOY() list from end of toylist.h to generated/newtoys.h. by Rob Landley · 17 years ago
  93. 3632d5d Fix loopfiles to not call function() on file not found. by Rob Landley · 17 years ago
  94. 3548341 Make patch's file add actually work, including directory creating and by Rob Landley · 17 years ago
  95. e745d8e Upgrade patch to understand creating and deleting files. by Rob Landley · 17 years ago
  96. 42ecbab Patch command. by Rob Landley · 17 years ago
  97. bc07865 Start of "patch" support. Writes to stdout at the moment. by Rob Landley · 17 years ago
  98. aaffc07 Changeset 186 assumed that toys.exitval defaults to 0. Actually change the by Rob Landley · 17 years ago
  99. ce6750a Add sha1sum. (No -c mode yet.) Slight tweaks to loopfiles() too. by Rob Landley · 17 years ago
  100. 7634b55 Add loopfiles() function, make catv use it. by Rob Landley · 17 years ago