summaryrefslogtreecommitdiff
path: root/package/busybox/busybox-1.15.1-sed.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox/busybox-1.15.1-sed.patch')
-rw-r--r--package/busybox/busybox-1.15.1-sed.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/package/busybox/busybox-1.15.1-sed.patch b/package/busybox/busybox-1.15.1-sed.patch
deleted file mode 100644
index 7042bf0eb..000000000
--- a/package/busybox/busybox-1.15.1-sed.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -urpN busybox-1.15.1/editors/sed.c busybox-1.15.1-sed/editors/sed.c
---- busybox-1.15.1/editors/sed.c 2009-09-12 17:55:58.000000000 +0200
-+++ busybox-1.15.1-sed/editors/sed.c 2009-09-22 03:01:59.000000000 +0200
-@@ -690,10 +690,8 @@ static int do_subst_command(sed_cmd_t *s
- if (sed_cmd->which_match)
- break;
-
-- if (*line == '\0')
-- break;
- //maybe (G.regmatch[0].rm_eo ? REG_NOTBOL : 0) instead of unconditional REG_NOTBOL?
-- } while (regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH);
-+ } while (*line && regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH);
-
- /* Copy rest of string into output pipeline */
- while (1) {