summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/grep/13-P.patch
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/grep/13-P.patch')
-rw-r--r--abs/core-testing/grep/13-P.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/abs/core-testing/grep/13-P.patch b/abs/core-testing/grep/13-P.patch
deleted file mode 100644
index 9dca4ad..0000000
--- a/abs/core-testing/grep/13-P.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- grep-2.5.1a/src/search.c.P 2006-02-03 14:08:00.000000000 +0000
-+++ grep-2.5.1a/src/search.c 2006-02-03 14:11:20.000000000 +0000
-@@ -1234,8 +1234,9 @@
- char eol = eolbyte;
- if (!exact)
- {
-- end = memchr (end, eol, buflim - end);
-- end++;
-+ while (end < buflim)
-+ if (*end++ == eol)
-+ break;
- while (buf < beg && beg[-1] != eol)
- --beg;
- }