aboutsummaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-07-05 16:27:34 +0000
committerEric Andersen <andersen@codepoet.org>2001-07-05 16:27:34 +0000
commit8e75f6daa6d365b4271c5f9b27b55898835f51cd (patch)
treee0c9124998c072c304a28dd89652c3768b1a9baa /procps
parent332394b577d75669cd30c3ea884e9152d63366f8 (diff)
downloadbusybox-w32-8e75f6daa6d365b4271c5f9b27b55898835f51cd.tar.gz
busybox-w32-8e75f6daa6d365b4271c5f9b27b55898835f51cd.tar.bz2
busybox-w32-8e75f6daa6d365b4271c5f9b27b55898835f51cd.zip
Fix a stupid thinko, and fix killall to cope with the updated
find_pid_by_name() interface -Erik
Diffstat (limited to 'procps')
-rw-r--r--procps/kill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/kill.c b/procps/kill.c
index fb3d72213..8745f63c1 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -218,9 +218,9 @@ extern int kill_main(int argc, char **argv)
218 pid_t* pidList; 218 pid_t* pidList;
219 219
220 pidList = find_pid_by_name( *argv); 220 pidList = find_pid_by_name( *argv);
221 if (!pidList) { 221 if (!pidList || *pidList<=0) {
222 all_found = FALSE; 222 all_found = FALSE;
223 error_msg( "%s: no process killed", *argv); 223 error_msg_and_die( "%s: no process killed", *argv);
224 } 224 }
225 225
226 for(; pidList && *pidList!=0; pidList++) { 226 for(; pidList && *pidList!=0; pidList++) {