From: Sami Kerola Date: Tue, 2 Apr 2013 19:42:47 +0000 (+0100) Subject: agetty: the command does not have -h and -V options X-Git-Tag: v2.23-rc2~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86ad1432e89a249aef115a41ff7fe95b66c96069;p=thirdparty%2Futil-linux.git agetty: the command does not have -h and -V options Signed-off-by: Sami Kerola --- diff --git a/term-utils/agetty.c b/term-utils/agetty.c index f877d0e360..a23cf6dc27 100644 --- a/term-utils/agetty.c +++ b/term-utils/agetty.c @@ -1664,9 +1664,8 @@ static void __attribute__ ((__noreturn__)) usage(FILE *out) fputs(_(" --long-hostname show full qualified hostname\n"), out); fputs(_(" --erase-chars additional backspace chars\n"), out); fputs(_(" --kill-chars additional kill chars\n"), out); - fputs(USAGE_SEPARATOR, out); - fputs(USAGE_HELP, out); - fputs(USAGE_VERSION, out); + fputs(_(" --help display this help and exit\n"), out); + fputs(_(" --version output version information and exit\n"), out); fprintf(out, USAGE_MAN_TAIL("agetty(8)")); exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);