]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(long_options): Correct typo (s/'F'/'p'/) so that `-p'
authorJim Meyering <jim@meyering.net>
Sat, 6 Nov 1999 09:55:13 +0000 (09:55 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 6 Nov 1999 09:55:13 +0000 (09:55 +0000)
works as the short form of --file-type, per the documentation.
From Michael Stone.

src/ls.c

index 57e80b090a62dfdf3e06476d97b787d50f6e4af0..1b7543b9f1f4c503672f49373002c10a24f1b183 100644 (file)
--- 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},