From: Francesco Cosoleto Date: Sun, 20 Feb 2011 07:34:27 +0000 (+0100) Subject: getopt: fix '--unqote' typo in usage text X-Git-Tag: v2.20-rc1~525 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6771a52a2b88695fc0bedddc4cc1c7fda2f62c1;p=thirdparty%2Futil-linux.git getopt: fix '--unqote' typo in usage text Signed-off-by: Francesco Cosoleto --- diff --git a/getopt/getopt.c b/getopt/getopt.c index fbcfb0590d..cea2f22d63 100644 --- a/getopt/getopt.c +++ b/getopt/getopt.c @@ -330,7 +330,7 @@ void print_help(void) fputs(_(" -Q, --quiet-output No normal output\n"),stderr); fputs(_(" -s, --shell=shell Set shell quoting conventions\n"),stderr); fputs(_(" -T, --test Test for getopt(1) version\n"),stderr); - fputs(_(" -u, --unqote Do not quote the output\n"),stderr); + fputs(_(" -u, --unquote Do not quote the output\n"),stderr); fputs(_(" -V, --version Output version information\n"),stderr); exit(2); }