diff options
author | obrien <obrien@FreeBSD.org> | 2010-01-04 10:37:07 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2010-01-04 10:37:07 +0000 |
commit | 986de484ed08d8eeecdb48dbda72aedaecb06b34 (patch) | |
tree | 3f5dd173efc9c1d36b8848350b2aacb3d0381cd4 /bin/pkill/pkill.c | |
parent | 7c3c566c898c3b6c1239ba8c857719aa722218e7 (diff) | |
download | FreeBSD-src-986de484ed08d8eeecdb48dbda72aedaecb06b34.zip FreeBSD-src-986de484ed08d8eeecdb48dbda72aedaecb06b34.tar.gz |
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.
Diffstat (limited to 'bin/pkill/pkill.c')
-rw-r--r-- | bin/pkill/pkill.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/pkill/pkill.c b/bin/pkill/pkill.c index 69349c3..258b3c8 100644 --- a/bin/pkill/pkill.c +++ b/bin/pkill/pkill.c @@ -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); |