log

age author description
Wed, 14 Jan 2015 13:54:34 -0600 Rob Landley Make touch -d miliseconds work. (Still only 6 digits precision instead of 9, but it's a start.) draft
Wed, 14 Jan 2015 03:43:49 -0600 Elliott Hughes i found a few problems while manually smoke testing toybox chown versus toolbox (NetBSD) chown... draft
Wed, 14 Jan 2015 00:31:06 -0600 Rob Landley Let chown build standalone. draft
Tue, 13 Jan 2015 04:28:19 -0600 Rob Landley sed bugfix: N or n at end of script would save the terminating NULL as the resume position, so the script would restart from beginning. draft
Tue, 13 Jan 2015 03:35:37 -0600 Rob Landley sed s/// can have line continuations in the replacement part, with or without a \ escaping the newline. draft
Sun, 11 Jan 2015 10:17:58 -0600 Rob Landley Promote printf. draft
Sun, 11 Jan 2015 10:16:38 -0600 Rob Landley One more bugfix for printf.c, with test suite entry. (Make %-3d etc work.) draft
Sun, 11 Jan 2015 01:22:36 -0600 Rob Landley Cleanup pass on printf. draft
Sat, 10 Jan 2015 20:02:21 -0600 Rob Landley More half-finished cleanup of printf.c, and more test suite entries. draft
Tue, 06 Jan 2015 15:06:51 -0600 Rob Landley Since "printf" is a shell builtin, printf.test wasn't actually testing anything. draft
Tue, 06 Jan 2015 12:07:20 -0600 Rob Landley More printf cleanup, and test suite entries. draft
Sun, 04 Jan 2015 03:50:52 -0600 Rob Landley Fix sed backslash parsing in square bracket pattern sections. draft
Sat, 03 Jan 2015 20:31:41 -0600 Rob Landley Another cleanup pass on printf. draft
Sat, 03 Jan 2015 16:25:36 -0600 Rob Landley Move fflush() checking to xexit() and have exit paths in main() call that. draft
Fri, 02 Jan 2015 21:28:39 -0600 Rob Landley Cleanup pass on printf. draft
Fri, 02 Jan 2015 00:44:27 -0600 Rob Landley Need to update install.c for the changed OLDTOY() argument list. draft
Thu, 01 Jan 2015 17:37:57 -0600 Rob Landley Tweak status.html draft
Thu, 01 Jan 2015 16:59:35 -0600 Rob Landley Switch a lot of strncpy() calls to xstrncpy(). draft
Thu, 01 Jan 2015 16:49:55 -0600 Rob Landley strncpy(optptr, hname, strlen(hname)) is really just strcpy(). draft
Thu, 01 Jan 2015 16:28:51 -0600 Rob Landley strtol() doesn't return error indicator for overflow, it just sets errno. So add estrtol() (which clears errno first), and xstrtol() (which error_exit()s on overflow). draft
Thu, 01 Jan 2015 16:19:40 -0600 Rob Landley Debris from flag handling rewrite: don't allow -^A to actually trigger. draft
Thu, 01 Jan 2015 10:58:59 -0600 Elliott Hughes typo fixes draft
Wed, 31 Dec 2014 22:38:48 -0600 Rob Landley Fix for mix from Isaac Dunham (who can actually test it). (I tweaked the curly brackets.) draft
Wed, 31 Dec 2014 21:30:59 -0600 Rob Landley Redo option parsing infrastructure so #define FORCE_FLAGS can unzero flag macros for a disabled command (needed when multiple commands share infrastructure with a common set of flags). draft
Wed, 31 Dec 2014 21:23:37 -0600 Rob Landley When CP_MORE was disabled, the d flag was still in the [-exclusion] list at the end and option parsing fell off the end looking for it (segfault) if DEBUG wasn't enabled to check for that. draft
Wed, 31 Dec 2014 16:22:31 -0600 Rob Landley When you include the posix header libgen.h, glibc #defines basename to some random other symbol name (because gnu) and this screws up nontrivial macro expansions of NEWTOY(basename), so work around it in portability.h. draft
Tue, 30 Dec 2014 14:49:02 -0600 Rob Landley Link to gmane web archive. draft
Sun, 28 Dec 2014 14:44:09 -0600 Rob Landley Another random link for the design page. draft
Sun, 28 Dec 2014 14:38:14 -0600 Rob Landley Fluff out help text. draft
Sat, 27 Dec 2014 13:52:40 -0600 Rob Landley Promote mix draft