aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/renice/renice.c
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2002-05-25 10:37:24 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2002-05-25 10:37:24 +0000
commitb8b53eef91527e16a0e6d79788d130a3c27d728c (patch)
treee0249732a144c895fac5e471868f58e9a890531c /usr.bin/renice/renice.c
parent01e9310be51b0969cbe22b796b021653ccbec0a2 (diff)
downloadsrc-b8b53eef91527e16a0e6d79788d130a3c27d728c.tar.gz
src-b8b53eef91527e16a0e6d79788d130a3c27d728c.zip
Bad numeric arguments or usernames should cause non-zero exit status.
Notes
Notes: svn path=/head/; revision=97270
Diffstat (limited to 'usr.bin/renice/renice.c')
-rw-r--r--usr.bin/renice/renice.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/usr.bin/renice/renice.c b/usr.bin/renice/renice.c
index cda69fd1ad3f..c3864c9c5401 100644
--- a/usr.bin/renice/renice.c
+++ b/usr.bin/renice/renice.c
@@ -104,17 +104,22 @@ main(int argc, char *argv[])
if (which == PRIO_USER) {
if ((pwd = getpwnam(*argv)) != NULL)
who = pwd->pw_uid;
- else if (getnum("uid", *argv, &who))
+ else if (getnum("uid", *argv, &who)) {
+ errs++;
continue;
- else if (who < 0) {
+ } else if (who < 0) {
warnx("%s: bad value", *argv);
+ errs++;
continue;
}
} else {
- if (getnum("pid", *argv, &who))
+ if (getnum("pid", *argv, &who)) {
+ errs++;
continue;
+ }
if (who < 0) {
warnx("%s: bad value", *argv);
+ errs++;
continue;
}
}