1. 02f5a30 Fix mkdir -p with absolute paths. by Rob Landley · 10 years ago
  2. ca1b60e Move mkpathat to lib, remove redundant function used by patch. by Rob Landley · 10 years ago
  3. a8b88fe Add "volatile" annotation to peek/poke to stop potential optimizer overreach. by Rob Landley · 10 years ago
  4. 4dd800c Fix another bug reported by Ashwini Sharma. by Rob Landley · 10 years ago
  5. 1fb3ae7 Various cleanups found by Tom Sparrow's static analysis. by Rob Landley · 10 years ago
  6. b6c8a86 Move bunzip2 logic from lib into bzcat. by Rob Landley · 10 years ago
  7. 714a0db Two changes to shut up GCC: by Isaac Dunham · 10 years ago
  8. 59d85e2 Rename xmsprintf() to just xmprintf(). by Rob Landley · 10 years ago
  9. dc37317 Pass through all the readfile() arguments from xreadfile(). by Rob Landley · 10 years ago
  10. 656d504 Attached is an implementation for groupdel. by Ashwini Sharma · 10 years ago
  11. afba5b8 Fix some issues raised (albeit indirectly) by Isaac Dunham. by Rob Landley · 10 years ago
  12. 10d55b1 Only define MNT_DETACH for old glibc, portability.h included _before_ sys/mount.h... by Rob Landley · 10 years ago
  13. 0201900 Regression test against Ancient Build Environment (Ubuntu 8.04), fixup bit-rot. by Rob Landley · 10 years ago
  14. db1009d Move names_to_pid from pending to lib. by Rob Landley · 10 years ago
  15. dbbd3d6 Doing math on void pointers isn't portable, reported by Nathan McSween. by Rob Landley · 10 years ago
  16. b5e7416 Oops, cleaned up ifconfig uses atolx_range() instead of get_int_list(). Check that in. by Rob Landley · 10 years ago
  17. 5ec4ab3 Add xgetpwnam() to lib/xwrap.c. by Rob Landley · 10 years ago
  18. 9e44a58 Move xgetpwuid() and xgetgrgid() into xwrap.c by Rob Landley · 10 years ago
  19. 35b40be du from Ashwini Sharma. by Rob Landley · 11 years ago
  20. 34b91a9 Break out lib/pending.h from lib/lib.h. by Rob Landley · 11 years ago
  21. 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
  22. 938b830 Fix off by one, pointed out by Ashwini Sharma. by Rob Landley · 11 years ago
  23. 3704f82 Give xstrncpy() a more informative error message. by Rob Landley · 11 years ago
  24. 98c322e Merge toynet.h into toys.h: musl supports it and micromanaging uClibc config options isn't very interesting anymore. by Rob Landley · 11 years ago
  25. c9cc530 Refactor terminal querying. by Rob Landley · 11 years ago
  26. 3403742 Minor lib/password.c cleanup, described on the list. (Inline two functions.) by Rob Landley · 11 years ago
  27. d0f7935 Prep work for useradd by Ashwini Sharma. by Rob Landley · 11 years ago
  28. 0405185 Whitespace tweaks and remove unused variable. by Rob Landley · 11 years ago
  29. 507026b It's not a problem to exactly fill up the buffer with a run if the next symbol is the terminating symbol. Fixes https://jira.cyanogenmod.org/browse/CYAN-1896 by Rob Landley · 11 years ago
  30. c705b95 Tweak args (yank old + that never worked, rename | to +), and add uname -o as a synonym for -s. by Rob Landley · 11 years ago
  31. dc6db1a Fluff out option parsing documentation, add another DEBUG test. by Rob Landley · 11 years ago
  32. bc382be Fix -t c0 and -J as reported by heehooman at gmail on the list. by Rob Landley · 11 years ago
  33. cd0b70e Ah, that's why commit 1057 was skipped last pull: it was unfinished. Oops. (Fix it.) by Rob Landley · 11 years ago
  34. e3e8084 Remove two unused functions and shrink another. by Rob Landley · 11 years ago
  35. bb215e4 Adjust patch to use dlist_pop() by Rob Landley · 11 years ago
  36. 5f57bcc Redo tail closer to the original design. Add more tests for large data sets. (Still no -f support yet.) by Rob Landley · 11 years ago
  37. 9d4cd46 Fix [-group] argument dropping. by Rob Landley · 11 years ago
  38. 7d64dae Replace for_each_pid_with_name_in_array_perform_callback_function_upon_translated_value() with name_to_pid(), comparing absolute paths or just basename() consistently as spotted by Lukasz Skalski, and adjust callers. by Rob Landley · 11 years ago
  39. 12c8814 Ashwini Sharma submitted route.c, adding it to pending. by Rob Landley · 11 years ago
  40. c8a4997 Make [-abc] exclude logic clear argument slots when disabling options. by Rob Landley · 11 years ago
  41. 46e8e1d Fix for xpidfile spotted by Felix Janda. by Rob Landley · 11 years ago
  42. 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
  43. f538f42 Remove itoa/utoa, let libc do this with sprintf. by Rob Landley · 11 years ago
  44. b7162a4 Improve --longopt parsing: general bugfixes, better error reporting, new ; option for optional arguments only suppliable with =. by Rob Landley · 11 years ago
  45. 42adb7a Allow getmountlist to read fstab too. by Rob Landley · 11 years ago
  46. d04dc1f Add scripts/single.sh to build individual non-multiplexed standalone commands. by Rob Landley · 11 years ago
  47. 455865a Rewrite pmap to be simpler and match other implementation's output more closely. by Rob Landley · 11 years ago
  48. dccfb2a syslogd: cleanup by Felix Janda · 11 years ago
  49. 100fb23 Remove files du no longer needs. by Rob Landley · 11 years ago
  50. e49fe14 Add daemonize function to lib for klogd and syslogd by Felix Janda · 11 years ago
  51. 035f27a Achille Fouilleul pointed out that fdlength wasn't returning the right length in the binary search case. by Rob Landley · 11 years ago
  52. 1aa7511 Forgot to check in xfdopen(). My bad. by Rob Landley · 11 years ago
  53. 9e89d47 Cleanup renice and implement '|' (required option) in argument parsing. by Rob Landley · 11 years ago
  54. bb504f3 Start of TOYBOX_SINGLE support, for building standalone commands with no multiplexer. by Rob Landley · 11 years ago
  55. 7275667 Add timeout, factoring out common code from sleep. by Rob Landley · 11 years ago
  56. d390493 Split lib/xwrap.c from lib/lib.c by Rob Landley · 11 years ago
  57. 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
  58. e999ca0 add grep by Strake · 11 years ago
  59. c810f9f This inlines CRC64, and nothing more. by Isaac Dunham · 11 years ago
  60. 4d3b3da Option type @ counts number of occurrences, it doesn't take an argument. by Rob Landley · 11 years ago
  61. 5583030 Add xexit() and make error_exit() use it. by Rob Landley · 11 years ago
  62. 5a26a86 Stat cleanup. by Rob Landley · 11 years ago
  63. 085f236 Add peek/poke to header file. by Rob Landley · 11 years ago
  64. 6b28341 Enable readfile() and add peek() and poke() functions. by Rob Landley · 11 years ago
  65. 6a921ee xioctl() error message should use hex ioctl number; that's what headers list. by Rob Landley · 11 years ago
  66. 00474ef Silence warning and comment a subtle bit. by Rob Landley · 11 years ago
  67. 078d31c Convert getmountlist() to xgetmountlist(). by Rob Landley · 11 years ago
  68. 6938c0b Fix bare longopts to set unique optflag bits. by Rob Landley · 11 years ago
  69. 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
  70. 7a1f582 Fix conflicting types for show_help(). by Rob Landley · 11 years ago
  71. 5a221e6 Add library function for the file permission formatting in ls and stat by Felix Janda · 11 years ago
  72. 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
  73. a4a6dfb Remove leaked global path_mounts. by Rob Landley · 11 years ago
  74. 4f49955 Eliminate leaked global bunzip_errors. by Rob Landley · 11 years ago
  75. be93c91 More ifconfig cleanup. by Rob Landley · 11 years ago
  76. 36ffc5a Move guts of help command into show_help() in lib/help.c, with config TOYBOX_HELP controlling infrastructure. by Rob Landley · 11 years ago
  77. a137c3f Fix argument parsing so -- doesn't include itself in output. by Rob Landley · 11 years ago
  78. e5f3a0b Remove unused min/max macros. by Rob Landley · 11 years ago
  79. 25b043b Compile time probe to fish O_NOFOLLOW out of linux headers when fcntl doesn't conform to posix-2008. by Rob Landley · 11 years ago
  80. 364d9ab O_NOFOLLOW is specified by posix-2008 and varies by target, don't try to supply them for broken headers. by Rob Landley · 11 years ago
  81. 9559c2c Comment updates and a policy statement about avoiding #define GNU_dammit by Rob Landley · 11 years ago
  82. 44b9d04 More support for old (~2008) build environments, move the #ifdef checks for symbols out of specific library version checks (shouldn't hurt anything), remove obsolete debug macro. by Rob Landley · 11 years ago
  83. 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 · 11 years ago
  84. 7c0e280 Fix xabspath() resolving symlink after .., and properly detecting failure for last entry after nondir. by Rob Landley · 11 years ago
  85. ae9243a Work around more random uClibc-specific breakage. by Rob Landley · 11 years ago
  86. 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 · 11 years ago
  87. 090c5c6 Make dirtree_handle_callback() start with dirtree_ like the rest of the dirtree functions. by Rob Landley · 11 years ago
  88. 8abf095 Ashwini Sharma pointed out that my previous tweak to [!abc] groups still didn't get the error reporting right (test case "touch -d 12 -r f2 f1"). This says "no 'r' with 'd'" for that, and still shouldn't be able to fall off the end of the list (segfault) because an option can't conflict with itself (that's what the ~(1<<i) on lib/args.c line 317 is for). by Rob Landley · 11 years ago
  89. 6d91e0f Fix option grouping. by Rob Landley · 11 years ago
  90. ca4035b Extend killall with support for -v and -i by Elie De Brauwer · 11 years ago
  91. 7c6209d Adding -s (single shot) and -o (omit pids) options to pidof by Elie De Brauwer · 11 years ago
  92. 37de8ed Complicate the rm -i behavior to do what posix specifies. by Rob Landley · 11 years ago
  93. 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 · 11 years ago
  94. 3162c27 Have dirtree_add_node() set parent so error message can provide full path. by Rob Landley · 11 years ago
  95. 4ddc73b Remove unused structure definition. by Rob Landley · 11 years ago
  96. 62fd9d0 Fix ancient glibc workaround to force fstatat64 by Rob Landley · 11 years ago
  97. 939fa74 Add expand command as described in POSIX-2008. Erratum: Do not handle backspace. by Jonathan Clairembault · 11 years ago
  98. 9f8217c The headers of uClibc and older glibc got unhappy with O_DIRECTORY and some other stuff. Fix it up in portability.h. by Rob Landley · 11 years ago
  99. de51192 Fix typo. by Rob Landley · 11 years ago
  100. 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 · 11 years ago