diff options
Diffstat (limited to 'kill.c')
-rw-r--r-- | kill.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -228,14 +228,17 @@ extern int kill_main(int argc, char **argv) | |||
228 | } | 228 | } |
229 | #ifdef BB_KILLALL | 229 | #ifdef BB_KILLALL |
230 | else { | 230 | else { |
231 | int all_found = TRUE; | ||
231 | pid_t myPid=getpid(); | 232 | pid_t myPid=getpid(); |
232 | /* Looks like they want to do a killall. Do that */ | 233 | /* Looks like they want to do a killall. Do that */ |
233 | while (--argc >= 0) { | 234 | while (--argc >= 0) { |
234 | pid_t* pidList; | 235 | pid_t* pidList; |
235 | 236 | ||
236 | pidList = findPidByName( *argv); | 237 | pidList = findPidByName( *argv); |
237 | if (!pidList) | 238 | if (!pidList) { |
239 | all_found = FALSE; | ||
238 | errorMsg( "%s: no process killed\n", *argv); | 240 | errorMsg( "%s: no process killed\n", *argv); |
241 | } | ||
239 | 242 | ||
240 | for(; pidList && *pidList!=0; pidList++) { | 243 | for(; pidList && *pidList!=0; pidList++) { |
241 | if (*pidList==myPid) | 244 | if (*pidList==myPid) |
@@ -248,6 +251,7 @@ extern int kill_main(int argc, char **argv) | |||
248 | * upon exit, so we can save a byte or two */ | 251 | * upon exit, so we can save a byte or two */ |
249 | argv++; | 252 | argv++; |
250 | } | 253 | } |
254 | exit (all_found); | ||
251 | } | 255 | } |
252 | #endif | 256 | #endif |
253 | 257 | ||