commit | 86ab8a32bd63b2f2a73bdcead8e2bb037589e175 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Fri Jun 02 03:21:42 2000 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Fri Jun 02 03:21:42 2000 +0000 |
tree | 10aa90962757d07724c78e4fc9baaa27ca7b4858 | |
parent | 4062268bc7ac748e2ea2e569aa862b2b3f8a2db2 [diff] [blame] |
A number of additional fixed from Pavel Roskin, note some more bugs in the TODO list. Add Glenn to the Authors list for writing a mini ar for BusyBox, which is now included. -Erik
diff --git a/kill.c b/kill.c index 0487f6a..1f1bee4 100644 --- a/kill.c +++ b/kill.c
@@ -234,6 +234,9 @@ pid_t* pidList; pidList = findPidByName( *argv); + if (!pidList) + errorMsg( "%s: no process killed\n", *argv); + for(; pidList && *pidList!=0; pidList++) { if (*pidList==myPid) continue;