aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-04-21sync with waldiGlenn L McGrath
2003-04-21unlink() an existing file, before opening it, simply truncating canGlenn L McGrath
cause nasty problems if overwriting glibc, spotted by waldi.
2003-04-21Add link to SimplyGNUstepEric Andersen
2003-04-19Patch from David Updegraff to use calloc so that forward pointers start outEric Andersen
NULL, and so it can handle format strings that have stuff _after_ the last %? specification
2003-04-19Patch from David Updegraff to avoid corrupting memory while parsing theEric Andersen
networks/iterfaces file with next_word routine. Without this, next_word increments one beyond the end of the string.
2003-04-16Minor .o file naming changeEric Andersen
2003-04-16enable CONFIG_USE_BB_PWD_GRP for the debian installer,Eric Andersen
to prevent glibc from trying and failing to use NSS junk that is not present. -Erik
2003-04-12Fix logic error in grouped commandsGlenn L McGrath
2003-04-11Fix up indentingGlenn L McGrath
2003-04-09Really fix the 'r' commandGlenn L McGrath
2003-04-09Fix the sed 'r' commandGlenn L McGrath
2003-04-09fix substitution when replacing with &, we shouldnt check for an escape ↵Glenn L McGrath
charcter. Its already been taken care of _somewhere_ else
2003-04-09Label ends at a newline, update comments, rename linked list fieldGlenn L McGrath
2003-04-08Run through indentGlenn L McGrath
2003-04-08Fixes block commands to correctly identify end of block, recognise the #n ↵Glenn L McGrath
directive, fix substitue command when regex isnt specified
2003-04-07Add hold space commands 'g', 'h', 'x'Glenn L McGrath
2003-04-07Rename "line" to pattern_space to be more descriptive and closer to the ↵Glenn L McGrath
POSIX description
2003-04-06Sync with waldi's packageGlenn L McGrath
2003-04-06Preparation for the new net-udeb based on required applets documented atGlenn L McGrath
http://cvs.debian.org/debian-installer/doc/busybox-applets.txt
2003-04-04Add more help textEric Andersen
2003-04-04Test that cvs commit messages are working properlyEric Andersen
-Erik
2003-04-03Fix 'thinko'.Manuel Novoa III
2003-04-02Yet another rather large face lift. It now works for me as expected.Eric Andersen
-Erik
2003-03-31Avoid errors with buggy preprocessorsEric Andersen
2003-03-30Update config to new menu optionsGlenn L McGrath
2003-03-30Rename, to specify kernelGlenn L McGrath
2003-03-30Group common stringGlenn L McGrath
2003-03-30Small fix for sed 'y' commandGlenn L McGrath
2003-03-30sed 'y' command, simplify some other codeGlenn L McGrath
2003-03-30Experimental support for embeded newline. (im evil)Glenn L McGrath
Fix segfault when using 'N' with an odd number of lines.
2003-03-28trivial fix to make sure we have sufficient arguments beforeEric Andersen
we mess with a possibly non-existant argv[1] -Erik
2003-03-28Still fine tunning the printing of the substitute commandGlenn L McGrath
2003-03-28sed 't' branching commandGlenn L McGrath
2003-03-28Fix sed 's' command's 'p' flag, so it can print line twiceGlenn L McGrath
2003-03-28fix q commandGlenn L McGrath
2003-03-28Add basic branching support, sed ':' and 'b' commandsGlenn L McGrath
2003-03-28make sed cleanup use linked listGlenn L McGrath
2003-03-28Use a linked list for sed commands in preparation for branching supportGlenn L McGrath
2003-03-23Oops... had != but meant ==.Manuel Novoa III
2003-03-19Minor cleanups. Document the cmp -l option.Manuel Novoa III
2003-03-19Restrict octal perms to <= 07777. Cosmetic error message change.Manuel Novoa III
2003-03-19Obligatory forgotten item.Manuel Novoa III
2003-03-19Things my compiler didn't catch...Manuel Novoa III
2003-03-19Major coreutils update.Manuel Novoa III
2003-03-18Match newlines, this fixes matching of ^ or $ when there is a '\n' in the ↵Glenn L McGrath
pattern being matched. This fixes cases when the N command is used.
2003-03-18Fix a bug that corrupted the string followed commands that had no arguments ↵Glenn L McGrath
(Closes #1304)
2003-03-14Patch from Jonas Holmberg, adjusted by Robert Schwebel, andEric Andersen
later re-adjusted by me to fix msh backtick handling
2003-03-13oops. args shuffled.Eric Andersen
2003-03-13Fix obviously wrong names from older busyboxEric Andersen
2003-03-13Patch from Tito Ragusa:Eric Andersen
The changes I've made: in strings.c: 1) fix memory allocation error I've detected with MALLOC_CHECK_=1 in *string; 2) code clean up; 3) fix compiler warnings about uninitialized vars;