From: Karel Zak Date: Fri, 5 Apr 2013 09:21:17 +0000 (+0200) Subject: getopt: fix usage() typo unquote -> unquoted X-Git-Tag: v2.23-rc2~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3706db7c085fccdcaa26e6fddcaeb47e6e5c1c6c;p=thirdparty%2Futil-linux.git getopt: fix usage() typo unquote -> unquoted Signed-off-by: Karel Zak --- diff --git a/misc-utils/getopt.c b/misc-utils/getopt.c index 55a331f442..7630173d73 100644 --- a/misc-utils/getopt.c +++ b/misc-utils/getopt.c @@ -329,7 +329,7 @@ static void __attribute__ ((__noreturn__)) print_help(void) fputs(_(" -Q, --quiet-output No normal output\n"), stderr); fputs(_(" -s, --shell Set shell quoting conventions\n"), stderr); fputs(_(" -T, --test Test for getopt(1) version\n"), stderr); - fputs(_(" -u, --unquote Do not quote the output\n"), stderr); + fputs(_(" -u, --unquoted Do not quote the output\n"), stderr); fputs(_(" -V, --version Output version information\n"), stderr); fputc('\n', stderr);