Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Patch from Denis Vlasenko turning static const int (which gets emitted into | Rob Landley | 2006-03-10 | 1 | -1/+1 | |
| | | | | the busybox binary) into enums (which don't). | |||||
* | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | 2006-03-06 | 1 | -1/+1 | |
| | | | | definitions. (That should only be on prototypes.) | |||||
* | Patch from awk maintainer (Dmitry Zakhrov) to fix bugs 642, 663, and 667. | Rob Landley | 2006-02-14 | 1 | -5/+13 | |
| | ||||||
* | - add platform.h. | Bernhard Reutner-Fischer | 2006-01-22 | 1 | -16/+3 | |
| | | | | - use shorter boilerplate while at it. | |||||
* | Bug 112, return value of awk should be /256. In reality, we should probably | Rob Landley | 2006-01-09 | 1 | -1/+1 | |
| | | | | | | 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. | |||||
* | more const, attribute_noreturn saved 200 bytes | "Vladimir N. Oleynik" | 2005-10-19 | 1 | -24/+26 | |
| | ||||||
* | - consume space between functionname and opening brackets | Bernhard Reutner-Fischer | 2005-10-17 | 1 | -1/+2 | |
| | | | | Fixes Rob's issue using busybox awk for building gcc-4_0 optionlist (http://busybox.net/lists/busybox/2005-October/016659.html) | |||||
* | as pointed out in Bug 17, use uint32_t instead of unsigned long since the ↵ | Mike Frysinger | 2005-09-27 | 1 | -20/+20 | |
| | | | | code expects the size of the info variables to be 32bits and sizeof(long) on 64bit hosts is not 32bits | |||||
* | eat misappropriated whitespace | Mike Frysinger | 2005-09-27 | 1 | -66/+66 | |
| | ||||||
* | uncuddle function scope brackets | Mike Frysinger | 2005-09-27 | 1 | -116/+116 | |
| | ||||||
* | split libbb: moved xregcomp separatelly for speed up recompile | "Vladimir N. Oleynik" | 2005-09-14 | 1 | -1/+1 | |
| | ||||||
* | removed strange extern void xregcomp(... from some applets, but declared ↵ | "Vladimir N. Oleynik" | 2005-09-14 | 1 | -1/+0 | |
| | | | | from libbb.h | |||||
* | Patch from Dmitry Zakharov: | Rob Landley | 2005-06-07 | 1 | -2/+1 | |
| | | | | | | | | | | | | | | | 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). | |||||
* | Patch from Dmitry Zakharov to fix a bug triggered by freeswan's scripts. | Glenn L McGrath | 2004-09-24 | 1 | -1/+2 | |
| | ||||||
* | Simon Poole reports that awk segfaults when environment variables | Eric Andersen | 2004-07-30 | 1 | -0/+4 | |
| | | | | | | | | | | | 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 | |||||
* | Patch from Dmitry Zakharov to fix a bug discovered via the freeswap | Glenn L McGrath | 2004-07-23 | 1 | -0/+1 | |
| | | | | script. | |||||
* | Larry Doolittle writes: | Eric Andersen | 2004-04-14 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | 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 | |||||
* | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | 2004-03-15 | 1 | -7/+7 | |
| | ||||||
* | Patch from Dmitry Zakharov, this line was missedfrom the last patch | Glenn L McGrath | 2004-02-22 | 1 | -0/+1 | |
| | ||||||
* | Patch from Dmitry Zakharov, | Glenn L McGrath | 2003-10-30 | 1 | -12/+28 | |
| | | | | | | | 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) | |||||
* | Major coreutils update. | Manuel Novoa III | 2003-03-19 | 1 | -33/+33 | |
| | ||||||
* | Change if(x)free(x); to free(x); | Aaron Lehmann | 2002-11-28 | 1 | -5/+4 | |
| | ||||||
* | Use erorr_msg( isntead of fprintf(stderr, | Glenn L McGrath | 2002-11-28 | 1 | -4/+4 | |
| | ||||||
* | Move awk from textutils to editors. Cleanup run-parts, saves 200 bytes, ↵ | Glenn L McGrath | 2002-11-11 | 1 | -0/+2742 | |
moves the guts of run_parts to libbb to be used by ifupdown. |