OSDN Git Service

Cosmetic tweak: no trailing spaces when ./toybox lists command names.
[android-x86/external-toybox.git] / lib /
2014-10-21 Rob LandleyMore static analysis fixes from Ashwini Sharma.
2014-10-21 Rob LandleyAdd TOYBOX_NORECURSE so xexec() won't make internal...
2014-10-18 Rob LandleyFactor out printf-style escape parsing logic from echo.c.
2014-10-14 Rob LandleyUse O_CLOEXEC instead of O_RDONLY to signal loopfiles_r...
2014-10-02 Rob LandleyWorkaround for musl's faccessat bug (the rm -r "error...
2014-09-28 Rob LandleyBrown paper bag time: comma_scan() didn't work for...
2014-09-28 Rob LandleyDon't segfault for --help of single.sh build of OLDTOY...
2014-09-26 Rob LandleyThe only illegal characters in a username are ":" ...
2014-09-22 Rob LandleyRespond to two static analysis issues in dirtree_path...
2014-09-20 Rob LandleyTweak portability.h for uClibc version in buildroot...
2014-09-15 Rob LandleySecond attempt at one way xpopen().
2014-09-14 Rob LandleySplit xpopen() into xpopen_both(), xpopen(), and xrun...
2014-09-07 Rob LandleyDebugging pass on mount. Not quite done yet, but the...
2014-09-06 Rob LandleyWork around uClibc brain-damage.
2014-08-25 Rob LandleyWork in progress snapshot of mount, with fallout to...
2014-08-19 Rob LandleyCleanups on useradd/groupadd/groupdel, and put TOYBOX_U...
2014-08-15 Rob LandleyFix bug reported by Ashwini Sharma: [-abc] syntax to...
2014-08-15 Rob LandleyIf string_to_mode() is called on a base mode with S_ISD...
2014-08-12 Ashwini SharmaPatches to commands for issues reported from static...
2014-08-03 Rob LandleyImplement exec -user, -group, and -newer. Enable find...
2014-08-03 Rob LandleyYank xrealpath prototype since the function's gone.
2014-07-31 Rob LandleyAs long as I had to write xabspath(), no point in wrapp...
2014-07-30 Rob LandleyActually set the again flag when calling the dirtree...
2014-07-26 Rob LandleyMove DIRTREE_COMEAGAIN second callback up to when the...
2014-07-26 Rob LandleyDefault xcreate/xopen to O_CLOEXEC. (Pass O_CLOEXEC...
2014-07-22 Rob LandleyImprove gid/uid error messages.
2014-07-22 Rob LandleyLittle endian and big endian versions of peek (for...
2014-07-22 Rob LandleyFix memory leak in error path.
2014-07-20 Rob LandleyAdd utf8 support to ls -C.
2014-07-20 Rob Landleyfind needs "c" suffix to -size.
2014-07-18 Rob LandleyUse libc daemon() instead of pending daemonize.
2014-06-29 Rob LandleyCleanup read_password(), factor out set_terminal()...
2014-06-26 Rob LandleyCleanup pass on mkpasswd.c
2014-06-24 Rob Landleyfind_in_path() is supposed to work with a NULL path...
2014-06-09 Rob LandleyForgot to check in strstart().
2014-06-03 Rob Landleymount: start on option parsing, implement loopback...
2014-05-31 Rob LandleyIntroduce xfork() and make commands use it, and make...
2014-05-29 Rob LandleySwitch mtab_list to doubly linked so we can traverse...
2014-05-27 Rob LandleyAdd mount options to data getmountlist collects.
2014-05-26 Rob LandleyIsaac Dunham suggested xprintf() should call fflush...
2014-05-24 Rob Landleypatch from ashwini sharma: treat 0 length read at the...
2014-05-21 Rob LandleyAdd generic_signal() handler, which sets toys.signal...
2014-05-21 Rob LandleyAdd free functions for predefined llist types.
2014-05-06 Rob LandleySwitch human_readable() to just outputing decimal kilo...
2014-05-06 Rob LandleyUse compiler built-in macros to determine if argument...
2014-05-02 Ashwini SharmaIn function readfile(), the buffer buf is free'd when...
2014-04-16 Rob LandleyProbes for O_NOFOLLOW that compile and run something...
2014-03-29 Rob LandleyGroup headers by standard (POSIX or LSB) or function...
2014-03-24 Rob LandleyFix mkdir -p with absolute paths.
2014-03-12 Rob LandleyMove mkpathat to lib, remove redundant function used...
2014-03-11 Rob LandleyAdd "volatile" annotation to peek/poke to stop potentia...
2014-03-01 Rob LandleyFix another bug reported by Ashwini Sharma.
2014-02-16 Rob LandleyVarious cleanups found by Tom Sparrow's static analysis.
2014-02-07 Rob LandleyMove bunzip2 logic from lib into bzcat.
2014-01-28 Isaac DunhamTwo changes to shut up GCC:
2014-01-16 Rob LandleyRename xmsprintf() to just xmprintf().
2013-12-28 Rob LandleyPass through all the readfile() arguments from xreadfile().
2013-12-23 Ashwini SharmaAttached is an implementation for groupdel.
2013-12-23 Rob LandleyFix some issues raised (albeit indirectly) by Isaac...
2013-12-19 Rob LandleyOnly define MNT_DETACH for old glibc, portability.h...
2013-12-19 Rob LandleyRegression test against Ancient Build Environment ...
2013-12-19 Rob LandleyMove names_to_pid from pending to lib.
2013-12-08 Rob LandleyDoing math on void pointers isn't portable, reported...
2013-11-29 Rob LandleyOops, cleaned up ifconfig uses atolx_range() instead...
2013-11-29 Rob LandleyAdd xgetpwnam() to lib/xwrap.c.
2013-11-29 Rob LandleyMove xgetpwuid() and xgetgrgid() into xwrap.c
2013-11-11 Rob Landleydu from Ashwini Sharma.
2013-11-11 Rob LandleyBreak out lib/pending.h from lib/lib.h.
2013-11-07 Rob LandleyTweak terminal_size to never set either to 0, and retur...
2013-11-03 Rob LandleyFix off by one, pointed out by Ashwini Sharma.
2013-11-02 Rob LandleyGive xstrncpy() a more informative error message.
2013-11-02 Rob LandleyMerge toynet.h into toys.h: musl supports it and microm...
2013-10-27 Rob LandleyRefactor terminal querying.
2013-10-17 Rob LandleyMinor lib/password.c cleanup, described on the list...
2013-10-17 Rob LandleyPrep work for useradd by Ashwini Sharma.
2013-10-06 Rob LandleyWhitespace tweaks and remove unused variable.
2013-10-06 Rob LandleyIt's not a problem to exactly fill up the buffer with...
2013-09-21 Rob LandleyTweak args (yank old + that never worked, rename |...
2013-09-21 Rob LandleyFluff out option parsing documentation, add another...
2013-09-17 Rob LandleyFix -t c0 and -J as reported by heehooman at gmail...
2013-09-11 Rob LandleyAh, that's why commit 1057 was skipped last pull: it...
2013-09-10 Rob LandleyRemove two unused functions and shrink another.
2013-09-09 Rob LandleyAdjust patch to use dlist_pop()
2013-09-09 Rob LandleyRedo tail closer to the original design. Add more tests...
2013-09-09 Rob LandleyFix [-group] argument dropping.
2013-09-03 Rob LandleyReplace for_each_pid_with_name_in_array_perform_callbac...
2013-09-06 Rob LandleyAshwini Sharma submitted route.c, adding it to pending.
2013-09-06 Rob LandleyMake [-abc] exclude logic clear argument slots when...
2013-09-06 Rob LandleyFix for xpidfile spotted by Felix Janda.
2013-09-03 Rob LandleyIntroduce libbuf analogous to toybuf but for use by...
2013-09-03 Rob LandleyRemove itoa/utoa, let libc do this with sprintf.
2013-09-01 Rob LandleyImprove --longopt parsing: general bugfixes, better...
2013-08-30 Rob LandleyAllow getmountlist to read fstab too.
2013-08-30 Rob LandleyAdd scripts/single.sh to build individual non-multiplex...
2013-08-28 Rob LandleyRewrite pmap to be simpler and match other implementati...
2013-08-26 Felix Jandasyslogd: cleanup
2013-08-18 Rob LandleyRemove files du no longer needs.
2013-08-10 Felix JandaAdd daemonize function to lib for klogd and syslogd
2013-08-08 Rob LandleyAchille Fouilleul pointed out that fdlength wasn't...
2013-08-07 Rob LandleyForgot to check in xfdopen(). My bad.
next