diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-12-21 00:38:14 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-12-21 00:38:14 +0000 |
commit | aed62c0980f26baa438801072ffc8ec05cc37258 (patch) | |
tree | 9b056e04b23bc6a3797fe598596431dec11a92b3 /usr.bin/who | |
parent | 10e6b321d07d5e4f57980e82756c793f86ec01e1 (diff) |
Remove unimplemented System V options from the getopt() option string.
Notes
Notes:
svn path=/head/; revision=108146
Diffstat (limited to 'usr.bin/who')
-rw-r--r-- | usr.bin/who/who.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/who/who.c b/usr.bin/who/who.c index 23c7608ba315..d31ee4766bc4 100644 --- a/usr.bin/who/who.c +++ b/usr.bin/who/who.c @@ -70,7 +70,7 @@ main(int argc, char *argv[]) setlocale(LC_TIME, ""); - while ((ch = getopt(argc, argv, "HTabdlmpqrstu")) != -1) { + while ((ch = getopt(argc, argv, "HTmqsu")) != -1) { switch (ch) { case 'H': /* Write column headings */ Hflag = 1; |