diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-05-27 20:14:09 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-05-27 20:14:09 +0200 |
commit | 3c85ab716f46f4610db2638b34bafe5e6aaff8cf (patch) | |
tree | 2e96bf05308c6f5f44b2fe43f8157642b9725b99 /package/busybox/busybox-1.14.0-awk.patch | |
parent | 3169b04725d45ed96059f0b14456b80ff1ac02df (diff) |
busybox: bump 1.14.x version
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.14.0-awk.patch')
-rw-r--r-- | package/busybox/busybox-1.14.0-awk.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/busybox/busybox-1.14.0-awk.patch b/package/busybox/busybox-1.14.0-awk.patch deleted file mode 100644 index ef194eaf8..000000000 --- a/package/busybox/busybox-1.14.0-awk.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- busybox-1.14.0/editors/awk.c Tue Apr 14 01:43:09 2009 -+++ busybox-1.14.0-awk/editors/awk.c Mon May 18 23:49:29 2009 -@@ -1571,13 +1571,14 @@ - n++; /* we saw yet another delimiter */ - } else { - pmatch[0].rm_eo = l; -- if (s[l]) pmatch[0].rm_eo++; -+ if (s[l]) -+ pmatch[0].rm_eo++; - } - memcpy(s1, s, l); - /* make sure we remove *all* of the separator chars */ -- while (l < pmatch[0].rm_eo) { -- s1[l++] = '\0'; -- } -+ do { -+ s1[l] = '\0'; -+ } while (++l < pmatch[0].rm_eo); - nextword(&s1); - s += pmatch[0].rm_eo; - } while (*s); |