From: Pádraig Brady
Date: Wed, 29 Apr 2026 10:11:36 +0000 (+0100) Subject: unexpand: consolidate error messages X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=00cd91288cce5e781dbc750e85ef00a74bc49def;p=thirdparty%2Fcoreutils.git unexpand: consolidate error messages * src/unexpand.c (main): Use the same error as in parse_tab_stops(). --- diff --git a/src/unexpand.c b/src/unexpand.c index 4fbf9d3f8f..3cbff1b129 100644 --- a/src/unexpand.c +++ b/src/unexpand.c @@ -319,7 +319,7 @@ main (int argc, char **argv) have_tabval = true; } if (!DECIMAL_DIGIT_ACCUMULATE (tabval, c - '0')) - error (EXIT_FAILURE, 0, _("tab stop value is too large")); + error (EXIT_FAILURE, 0, _("tab stop is too large")); break; } } diff --git a/tests/unexpand/unexpand.pl b/tests/unexpand/unexpand.pl index fd64f0fc4d..d46d123248 100755 --- a/tests/unexpand/unexpand.pl +++ b/tests/unexpand/unexpand.pl @@ -93,7 +93,7 @@ my @Tests = # It is debatable whether this test should require an environment # setting of e.g., _POSIX2_VERSION=1. ['obs-ovflo', "-$limits->{UINTMAX_OFLOW}", {IN=>''}, {OUT=>''}, - {EXIT => 1}, {ERR => "$prog: tab stop value is too large\n"}], + {EXIT => 1}, {ERR => "$prog: tab stop is too large\n"}], # Test input with backspaces '\b' ('bs1' is the baseline, without \b)