From: Benno Schulenberg Date: Fri, 4 Oct 2013 19:22:53 +0000 (+0200) Subject: textual: make two messages somewhat easier to understand X-Git-Tag: v2.24-rc2~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38ae77d74343ae04c8732c6a8c088ef49cc7f0cb;p=thirdparty%2Futil-linux.git textual: make two messages somewhat easier to understand Signed-off-by: Benno Schulenberg --- diff --git a/term-utils/agetty.c b/term-utils/agetty.c index b94f203fb3..113f8e79df 100644 --- a/term-utils/agetty.c +++ b/term-utils/agetty.c @@ -667,7 +667,7 @@ static void parse_args(int argc, char **argv, struct options *op) else if (strcmp(optarg, "=auto") == 0) op->clocal = CLOCAL_MODE_AUTO; else - log_err(_("unsupported --local-line mode argument")); + log_err(_("invalid argument of --local-line")); } break; case 'm': @@ -1807,7 +1807,7 @@ static void __attribute__ ((__noreturn__)) usage(FILE *out) fputs(_(" -i, --noissue do not display issue file\n"), out); fputs(_(" -I, --init-string set init string\n"), out); fputs(_(" -l, --login-program specify login program\n"), out); - fputs(_(" -L, --local-line[=] control local line flag\n"), out); + fputs(_(" -L, --local-line[=] control the local line flag\n"), out); fputs(_(" -m, --extract-baud extract baud rate during connect\n"), out); fputs(_(" -n, --skip-login do not prompt for login\n"), out); fputs(_(" -o, --login-options options that are passed to login\n"), out);