Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-01-13 | sed bugfix: N or n at end of script would save the terminating NULL as the ↵ | Rob Landley | |
resume position, so the script would restart from beginning. | |||
2015-01-13 | sed s/// can have line continuations in the replacement part, with or ↵ | Rob Landley | |
without a \ escaping the newline. | |||
2015-01-11 | Promote printf. | Rob Landley | |
2015-01-11 | One more bugfix for printf.c, with test suite entry. (Make %-3d etc work.) | Rob Landley | |
2015-01-11 | Cleanup pass on printf. | Rob Landley | |
Alas, passing a union as the last argument to printf does not appear to work reliably, and there's no obvious way to manually assemble varargs in a portable manner. So I have to repeat the printf once for each data type. Oh well. | |||
2015-01-10 | More half-finished cleanup of printf.c, and more test suite entries. | Rob Landley | |
2015-01-06 | Since "printf" is a shell builtin, printf.test wasn't actually testing anything. | Rob Landley | |
2015-01-06 | More printf cleanup, and test suite entries. | Rob Landley | |
Fixes bug introduced last time where toys.optargs was both snapshotted and used directly and the two fell out of sync. | |||
2015-01-04 | Fix sed backslash parsing in square bracket pattern sections. | Rob Landley | |
2015-01-03 | Another cleanup pass on printf. | Rob Landley | |
2015-01-03 | Move fflush() checking to xexit() and have exit paths in main() call that. | Rob Landley | |
2015-01-02 | Cleanup pass on printf. | Rob Landley | |
2015-01-02 | Need to update install.c for the changed OLDTOY() argument list. | Rob Landley | |
2015-01-01 | Tweak status.html | Rob Landley | |
2015-01-01 | Switch a lot of strncpy() calls to xstrncpy(). | Rob Landley | |
2015-01-01 | strncpy(optptr, hname, strlen(hname)) is really just strcpy(). | Rob Landley | |
2015-01-01 | strtol() doesn't return error indicator for overflow, it just sets errno. So ↵ | Rob Landley | |
add estrtol() (which clears errno first), and xstrtol() (which error_exit()s on overflow). | |||
2015-01-01 | Debris from flag handling rewrite: don't allow -^A to actually trigger. | Rob Landley | |
2015-01-01 | typo fixes | Elliott Hughes | |
2014-12-31 | Fix for mix from Isaac Dunham (who can actually test it). (I tweaked the ↵ | Rob Landley | |
curly brackets.) He says: In the channel selection loop, "if (TT.chan)" had been combined with a strcmp; the else conditionals were premised on if (TT.chan) alone. The help text had been only partially updated for a couple option changes. | |||
2014-12-31 | Redo option parsing infrastructure so #define FORCE_FLAGS can unzero flag ↵ | Rob Landley | |
macros for a disabled command (needed when multiple commands share infrastructure with a common set of flags). This means the flag space is no longer packed, but leaves gaps where the zeroes go. (Actual flag bit positions are the same for all configs.) Since the option parsing needs to know where the holes are, the OPTSTR values are now generated as part of flags.h with ascii 1 values for the disabled values. (So generated/oldflags.h went away.) This also means that the option string argument for OLDTOY() went away, it now uses the same arguments as the NEWTOY() it references. | |||
2014-12-31 | When CP_MORE was disabled, the d flag was still in the [-exclusion] list at ↵ | Rob Landley | |
the end and option parsing fell off the end looking for it (segfault) if DEBUG wasn't enabled to check for that. | |||
2014-12-31 | When you include the posix header libgen.h, glibc #defines basename to some ↵ | Rob Landley | |
random other symbol name (because gnu) and this screws up nontrivial macro expansions of NEWTOY(basename), so work around it in portability.h. | |||
2014-12-30 | Link to gmane web archive. | Rob Landley | |
2014-12-28 | Another random link for the design page. | Rob Landley | |
2014-12-28 | Fluff out help text. | Rob Landley | |
2014-12-27 | Promote mix | Rob Landley | |
2014-12-27 | Cleanup mix.c. | Rob Landley | |
2014-12-24 | Teach factor to accept whitespace separated arguments (reported by Robert ↵ | Rob Landley | |
Thompson). (The diff looks bigger than it is because of reindenting.) | |||
2014-12-23 | getenforce and setenforce | Elliott Hughes | |
two more easy SELinux commands: | |||
2014-12-23 | those of us who need to check in generated files find that 'tr' and | Elliott Hughes | |
'traceroute' keep swapping places. self-inflicted, yes, but not much i can do about it :-( | |||
2014-12-23 | Merge catv back into cat as discussed on the list. Add comments about ↵ | Rob Landley | |
infrastructure upgrades needed to restore separate catv option. | |||
2014-12-22 | Allocate space for null terminator. | Rob Landley | |
2014-12-22 | sed 'r' didn't work right. | Rob Landley | |
2014-12-21 | Another sed bug. (The e2fsprogs build uses multiple line continuations on ↵ | Rob Landley | |
the same command.) | |||
2014-12-21 | Promote sed to posix. | Rob Landley | |
2014-12-20 | sed: implement 'l' | Rob Landley | |
2014-12-20 | Add tizen section to roadmap. | Rob Landley | |
2014-12-19 | More sed bugs. | Rob Landley | |
1) Newline in -e after s/// was eaten as "whitespace before flags" 2) \\ needs to be passed through to regex to avoid "trailing \" error and "\\n" is not a newline. | |||
2014-12-18 | Decouple cp and mv so mv uses its own --help text. | Rob Landley | |
MV still requires CP enabled until the flag generation logic gets updated. | |||
2014-12-18 | Give fstype its own config symbol (separate from blkid), and fix blkid not ↵ | Rob Landley | |
using more accurate ext3/ext4 filesystem sub-type. | |||
2014-12-15 | Fix yet another sed bug. | Rob Landley | |
The s/// command would copy the \ of substitutions before deciding what to do with them (generally overwriting the \ with the new data). When the substitution was A) at the very end of the new string, B) resolved to nothing, it could leave a trailing \ that didn't belong there and didn't get overwritten because the "copy trailing data" part that copies the original string's null terminator already happened before the \ overwrote it. The ghostwheel() function restarts regexes after embedded NUL bytes, but if the string it's passed is _longer_ than the length it's told then it gets confused (and it means we're off the end of our allocation so segfaults are likely). Fix: test for \ first and move the "copy byte" logic into an else case. | |||
2014-12-14 | Make sed a\ line continuations work properly for different pattern input modes. | Rob Landley | |
2014-12-13 | Fix bug in sed y/// where bytes in target but not in source were replaced by ↵ | Rob Landley | |
zeroes (nul terminator overwritten). | |||
2014-12-13 | Last sed bugfix broke 'b', fix it. | Rob Landley | |
2014-12-13 | Leftover variable from factoring out base64_init() caused an unused variable ↵ | Rob Landley | |
warning. | |||
2014-12-13 | Oops. xfork() moved to portability.c and the config2help.c build wasn't ↵ | Rob Landley | |
including that. (Worked until I did a "make clean".) | |||
2014-12-13 | Forgot to check in a header file for base64. | Rob Landley | |
2014-12-13 | Add "make help" entry for "make change". | Rob Landley | |
2014-12-13 | Add base64. | Rob Landley | |
The tizen guys wanted this. Yeah, I know there's base64 code in uuencode/uudecode, but that this has -i, input lines aren't of fixed length, encode/decode are in same file, there's no prefix/suffix code, it always writes to stdout... Eliminating the code duplication wouldn't be worth the if/else I'd have to add, so I just did a new one. Factored out the base64 table init into lib.c though: that was worth sharing. |