summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2016-12-16 14:49:23 +0100
committerErich Eckner <git@eckner.net>2016-12-16 14:49:23 +0100
commite954094ad3464f5748d44d316262ff356ffef722 (patch)
tree0720439d0e024ade275dccca8cf2a13077a71abe
parent8adc0af292063fe857f7bf6b929bcbe5be8ad52d (diff)
downloadcrux-patches-e954094ad3464f5748d44d316262ff356ffef722.tar.xz
coreutils: uniq: refit old patch to new line numbers
-rw-r--r--core/coreutils/coreutils-uniq.patch.new22
1 files changed, 11 insertions, 11 deletions
diff --git a/core/coreutils/coreutils-uniq.patch.new b/core/coreutils/coreutils-uniq.patch.new
index 5f0a9c7..9acb2d7 100644
--- a/core/coreutils/coreutils-uniq.patch.new
+++ b/core/coreutils/coreutils-uniq.patch.new
@@ -1,6 +1,6 @@
--- old/src/uniq.c 2016-10-05 20:45:05.445188226 +0200
+++ new/src/uniq.c 2016-10-05 21:25:24.298871811 +0200
-@@ -57,6 +57,9 @@
+@@ -58,6 +58,9 @@
/* Number of fields to skip on each line when doing comparisons. */
static size_t skip_fields;
@@ -10,7 +10,7 @@
/* Number of chars to skip after skipping any fields. */
static size_t skip_chars;
-@@ -152,6 +155,7 @@
+@@ -153,6 +156,7 @@
{"ignore-case", no_argument, NULL, 'i'},
{"unique", no_argument, NULL, 'u'},
{"skip-fields", required_argument, NULL, 'f'},
@@ -18,7 +18,7 @@
{"skip-chars", required_argument, NULL, 's'},
{"check-chars", required_argument, NULL, 'w'},
{"zero-terminated", no_argument, NULL, 'z'},
-@@ -199,6 +203,11 @@
+@@ -200,6 +204,11 @@
"), stdout);
fputs (_("\
-i, --ignore-case ignore differences in case when comparing\n\
@@ -30,7 +30,7 @@
-s, --skip-chars=N avoid comparing the first N characters\n\
-u, --unique only print unique lines\n\
"), stdout);
-@@ -252,7 +261,7 @@
+@@ -260,7 +269,7 @@
return a pointer to the beginning of the line's field to be compared. */
static char * _GL_ATTRIBUTE_PURE
@@ -39,7 +39,7 @@
{
size_t count;
char const *lp = line->buffer;
-@@ -269,6 +278,21 @@
+@@ -277,6 +286,21 @@
i += MIN (skip_chars, size - i);
@@ -61,7 +61,7 @@
return line->buffer + i;
}
-@@ -369,8 +393,7 @@
+@@ -377,8 +401,7 @@
if (readlinebuffer_delim (thisline, stdin, delimiter) == 0)
break;
@@ -71,7 +71,7 @@
new_group = (prevline->length == 0
|| different (thisfield, prevfield, thislen, prevlen));
-@@ -404,8 +427,7 @@
+@@ -412,8 +435,7 @@
if (readlinebuffer_delim (prevline, stdin, delimiter) == 0)
goto closefiles;
@@ -81,7 +81,7 @@
while (!feof (stdin))
{
-@@ -418,8 +440,7 @@
+@@ -426,8 +448,7 @@
goto closefiles;
break;
}
@@ -91,7 +91,7 @@
match = !different (thisfield, prevfield, thislen, prevlen);
match_count += match;
-@@ -500,6 +521,7 @@
+@@ -508,6 +529,7 @@
skip_chars = 0;
skip_fields = 0;
@@ -99,7 +99,7 @@
check_chars = SIZE_MAX;
output_unique = output_first_repeated = true;
output_later_repeated = false;
-@@ -515,7 +537,7 @@
+@@ -523,7 +545,7 @@
if (optc == -1
|| (posixly_correct && nfiles != 0)
|| ((optc = getopt_long (argc, argv,
@@ -108,7 +108,7 @@
== -1))
{
if (argc <= optind)
-@@ -609,6 +631,11 @@
+@@ -617,6 +639,11 @@
ignore_case = true;
break;