Fix the "-t" functionality. Per the regression tests (pgrep-t.t & pkill-t.t),

"-t" should accept "v1", which means a plain number should be accepted for
UNIX98-style PTY's.
This commit is contained in:
David E. O'Brien 2010-01-04 10:37:07 +00:00
parent 72cef5b74f
commit 39a60cbcab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201484

View File

@ -670,9 +670,6 @@ makelist(struct listhead *head, enum listtype type, char *src)
if (li->li_number == 0)
li->li_number = -1; /* any jail */
break;
case LT_TTY:
usage();
/* NOTREACHED */
default:
break;
}
@ -708,6 +705,10 @@ makelist(struct listhead *head, enum listtype type, char *src)
if (stat(buf, &st) != -1)
goto foundtty;
snprintf(buf, sizeof(buf), _PATH_DEV "pts/%s", cp);
if (stat(buf, &st) != -1)
goto foundtty;
if (errno == ENOENT)
errx(STATUS_BADUSAGE, "No such tty: `%s'", sp);
err(STATUS_ERROR, "Cannot access `%s'", sp);