diff options
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); |