summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-11-06 09:55:13 +0000
committerJim Meyering <jim@meyering.net>1999-11-06 09:55:13 +0000
commitea525f532f12a841c52f0bafb8fd89e1a872ea17 (patch)
tree4b9283a8dd479c7e0b383787d30611fadf5c2332 /src
parent476de46ee5f17a6a4073713c85157e6a10a3e77f (diff)
downloadcoreutils-ea525f532f12a841c52f0bafb8fd89e1a872ea17.tar.xz
(long_options): Correct typo (s/'F'/'p'/) so that `-p'
works as the short form of --file-type, per the documentation. From Michael Stone.
Diffstat (limited to 'src')
-rw-r--r--src/ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ls.c b/src/ls.c
index 57e80b090..1b7543b9f 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},