summaryrefslogtreecommitdiffstats
path: root/usr.bin/finger
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2007-04-11 20:32:09 +0000
committerdes <des@FreeBSD.org>2007-04-11 20:32:09 +0000
commit249451cebe5d7b349eccd57fea6faa3012934625 (patch)
tree61c64e35f1b824b6bc26d1989f960eb1f1a8e6a9 /usr.bin/finger
parent22ad00d0a73672fa1e99437dd653fc644a910f26 (diff)
downloadFreeBSD-src-249451cebe5d7b349eccd57fea6faa3012934625.zip
FreeBSD-src-249451cebe5d7b349eccd57fea6faa3012934625.tar.gz
Remove -T from getopt() spec and usage string.
Submitted by: ru@
Diffstat (limited to 'usr.bin/finger')
-rw-r--r--usr.bin/finger/finger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/finger/finger.c b/usr.bin/finger/finger.c
index 675a964..b278752 100644
--- a/usr.bin/finger/finger.c
+++ b/usr.bin/finger/finger.c
@@ -109,7 +109,7 @@ option(int argc, char **argv)
optind = 1; /* reset getopt */
- while ((ch = getopt(argc, argv, "46gklmpshoT")) != -1)
+ while ((ch = getopt(argc, argv, "46gklmpsho")) != -1)
switch(ch) {
case '4':
family = AF_INET;
@@ -153,7 +153,7 @@ static void
usage(void)
{
(void)fprintf(stderr,
- "usage: finger [-46gklmpshoT] [user ...] [user@host ...]\n");
+ "usage: finger [-46gklmpsho] [user ...] [user@host ...]\n");
exit(1);
}
OpenPOWER on IntegriCloud