Remove unimplemented System V options from the getopt() option string.

This commit is contained in:
Tim J. Robbins 2002-12-21 00:38:14 +00:00
parent 10e6b321d0
commit aed62c0980
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=108146

View File

@ -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;