Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-11 | Trailing whitespace removal over entire tree | Denis Vlasenko | |
2007-01-01 | awk: style fixes | Denis Vlasenko | |
2007-01-01 | awk: undo locale setting for numbers - or else parsing | Denis Vlasenko | |
can act quite mysteriously date: add if(ENABLE_LOCALE_SUPPORT) | |||
2007-01-01 | awk: style cleanup. A lot of rw data moved to ro | Denis Vlasenko | |
(still has quite a lot of statics etc...). getopt32-ification. | |||
2006-12-26 | style fixes | Denis Vlasenko | |
last xcalloc replaced by xzalloc | |||
2006-12-22 | remove useless casts (type*) xzalloc(...) | Denis Vlasenko | |
2006-12-19 | remove casts from xmalloc() | Denis Vlasenko | |
2006-12-19 | Add option to disable command execution from vi & awk | Denis Vlasenko | |
2006-10-27 | Fix largefile breakage; advance version to 1.2.2 | Denis Vlasenko | |
2006-10-25 | use skip_whitespace where appropriate | Denis Vlasenko | |
2006-10-20 | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | |
2006-10-07 | awk: && -> & in "n->info && OPCLSMASK" - fixes bug 1067 | Denis Vlasenko | |
2006-10-03 | getopt_ulflags -> getopt32. | Denis Vlasenko | |
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||
2006-10-03 | lots of silly indent fixes | Denis Vlasenko | |
2006-09-26 | several fixes from openWRT project | Denis Vlasenko | |
2006-09-22 | awk: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-06 | removed a lot of trailing \n in bb_msg() calls. It is added | Denis Vlasenko | |
automatically by function itself. | |||
2006-08-29 | Svn 16007 broke the build under gcc 4.0.3. This fixes up some of the damage | Rob Landley | |
(the e2fsprogs directory is too twisty and evil to easily fix, but I plan to rewrite it anyway so I'll just bump that up in priority a bit). | |||
2006-08-03 | Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate | Rob Landley | |
things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.) | |||
2006-07-01 | Remove all usage of the "register" storage class specifier. | "Robert P. J. Day" | |
2006-05-21 | Minor cleanups: Convert a few calloc() calls to xzalloc, remove unnecessary | Rob Landley | |
memset, collate variable declarations... | |||
2006-05-19 | - include strings.h | Bernhard Reutner-Fischer | |
Thanks to Rich Felker for pointing this out. | |||
2006-05-07 | Remove bb_strlen() in favor of -fno-builtin-strlen. Saves as many bytes | Rob Landley | |
as the old optimization did (actually does slightly better under gcc 4.0), and simplifies the code. | |||
2006-04-16 | touchup comment | Mike Frysinger | |
2006-03-10 | Patch from Denis Vlasenko turning static const int (which gets emitted into | Rob Landley | |
the busybox binary) into enums (which don't). | |||
2006-03-06 | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | |
definitions. (That should only be on prototypes.) | |||
2006-02-14 | Patch from awk maintainer (Dmitry Zakhrov) to fix bugs 642, 663, and 667. | Rob Landley | |
2006-01-22 | - add platform.h. | Bernhard Reutner-Fischer | |
- use shorter boilerplate while at it. | |||
2006-01-09 | Bug 112, return value of awk should be /256. In reality, we should probably | Rob Landley | |
be using WEXITSTATUS(), but until I can figure out why the heck that would want to do (*(int *) &(status)) on the value, I'm happy just fixing the bug we actually see. | |||
2005-10-19 | more const, attribute_noreturn saved 200 bytes | "Vladimir N. Oleynik" | |
2005-10-17 | - consume space between functionname and opening brackets | Bernhard Reutner-Fischer | |
Fixes Rob's issue using busybox awk for building gcc-4_0 optionlist (http://busybox.net/lists/busybox/2005-October/016659.html) | |||
2005-09-27 | as pointed out in Bug 17, use uint32_t instead of unsigned long since the ↵ | Mike Frysinger | |
code expects the size of the info variables to be 32bits and sizeof(long) on 64bit hosts is not 32bits | |||
2005-09-27 | eat misappropriated whitespace | Mike Frysinger | |
2005-09-27 | uncuddle function scope brackets | Mike Frysinger | |
2005-09-14 | split libbb: moved xregcomp separatelly for speed up recompile | "Vladimir N. Oleynik" | |
2005-09-14 | removed strange extern void xregcomp(... from some applets, but declared ↵ | "Vladimir N. Oleynik" | |
from libbb.h | |||
2005-06-07 | Patch from Dmitry Zakharov: | Rob Landley | |
Charlie Brady wrote: > Here's another awk parsing problem - unary post increment - pre is fine: > >bash-2.05a$ echo 2,3 | gawk -F , '{ $2++ }' >bash-2.05a$ echo 2,3 | /tmp/busybox/busybox awk -F , '{ $2++ }' >awk: cmd. line:1: Unexpected token > Here's a fix for this. There is another problem with constructions like "print (A+B) ++C", I don't know whether somebody uses such constructions (fixing both these problems would require very serious change in awk code). | |||
2004-09-24 | Patch from Dmitry Zakharov to fix a bug triggered by freeswan's scripts. | Glenn L McGrath | |
2004-07-30 | Simon Poole reports that awk segfaults when environment variables | Eric Andersen | |
with no value exist, i.e. $ export BOB='' % ./busybox awk Segmentation fault This patch teaches awk to not blow chunks on empty env variables. -Erik | |||
2004-07-23 | Patch from Dmitry Zakharov to fix a bug discovered via the freeswap | Glenn L McGrath | |
script. | |||
2004-04-14 | Larry Doolittle writes: | Eric Andersen | |
This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry | |||
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2004-02-22 | Patch from Dmitry Zakharov, this line was missedfrom the last patch | Glenn L McGrath | |
2003-10-30 | Patch from Dmitry Zakharov, | Glenn L McGrath | |
Fixes two bugs: - END block didn't execute after an exit() call - huge memory consumption and performance degradation on large input (now performance is comparable to gawk) | |||
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2002-11-28 | Change if(x)free(x); to free(x); | Aaron Lehmann | |
2002-11-28 | Use erorr_msg( isntead of fprintf(stderr, | Glenn L McGrath | |
2002-11-11 | Move awk from textutils to editors. Cleanup run-parts, saves 200 bytes, ↵ | Glenn L McGrath | |
moves the guts of run_parts to libbb to be used by ifupdown. |