From: Jim Meyering Date: Sat, 6 Nov 1999 09:55:13 +0000 (+0000) Subject: (long_options): Correct typo (s/'F'/'p'/) so that `-p' X-Git-Tag: FILEUTILS-4_0j-trial~81 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea525f532f12a841c52f0bafb8fd89e1a872ea17;p=thirdparty%2Fcoreutils.git (long_options): Correct typo (s/'F'/'p'/) so that `-p' works as the short form of --file-type, per the documentation. From Michael Stone. --- diff --git a/src/ls.c b/src/ls.c index 57e80b090a..1b7543b9f1 100644 --- a/src/ls.c +++ b/src/ls.c @@ -581,7 +581,7 @@ static struct option const long_options[] = {"almost-all", no_argument, 0, 'A'}, {"ignore-backups", no_argument, 0, 'B'}, {"classify", no_argument, 0, 'F'}, - {"file-type", no_argument, 0, 'F'}, + {"file-type", no_argument, 0, 'p'}, {"si", no_argument, 0, 'H'}, {"ignore", required_argument, 0, 'I'}, {"indicator-style", required_argument, 0, 14},