From: Benno Schulenberg Date: Sun, 6 Apr 2025 15:21:45 +0000 (+0200) Subject: textual: fix a mistruncated message, and fix a typo X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8a765c94cabb6dede9e698ef44c69050d2f1ced5;p=thirdparty%2Futil-linux.git textual: fix a mistruncated message, and fix a typo The phrase "in human-readable form" was chosen rather than "in human-readable format" because it's shorter and lets the line fit *just* within 80 columns. Reported-by: Petr Písař Signed-off-by: Benno Schulenberg --- diff --git a/sys-utils/lsipc.c b/sys-utils/lsipc.c index d1dd27f35..a89ed4c5c 100644 --- a/sys-utils/lsipc.c +++ b/sys-utils/lsipc.c @@ -338,7 +338,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" --noheadings don't print headings\n"), out); fputs(_(" --notruncate don't truncate output\n"), out); fputs(_(" --time-format= display dates in short, full or iso format\n"), out); - fputs(_(" -b, --bytes print SIZE in bytes rather\n"), out); + fputs(_(" -b, --bytes print SIZE in bytes rather than in human-readable form\n"), out); fputs(_(" -c, --creator show creator and owner\n"), out); fputs(_(" -e, --export display in an export-able output format\n"), out); fputs(_(" -J, --json use the JSON output format\n"), out); diff --git a/sys-utils/setpriv.c b/sys-utils/setpriv.c index daa3ab366..433db6031 100644 --- a/sys-utils/setpriv.c +++ b/sys-utils/setpriv.c @@ -1025,7 +1025,7 @@ int main(int argc, char **argv) case SECCOMP_FILTER: if (opts.seccomp_filter) errx(EXIT_FAILURE, - _("duplicate --secccomp-filter option")); + _("duplicate --seccomp-filter option")); opts.seccomp_filter = optarg; break; case RESET_ENV: