diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-01-04 01:10:25 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-01-04 01:10:25 +0000 |
commit | 7dc160721ee3ceb76240a43d1454b45aaa9dbee4 (patch) | |
tree | 7532471be456e2c9f11eab88cb34f1e38abd184f /procps | |
parent | 9c88cac5cbfb2ff70f800ee5bb3289e925aaa65f (diff) | |
download | busybox-w32-7dc160721ee3ceb76240a43d1454b45aaa9dbee4.tar.gz busybox-w32-7dc160721ee3ceb76240a43d1454b45aaa9dbee4.tar.bz2 busybox-w32-7dc160721ee3ceb76240a43d1454b45aaa9dbee4.zip |
Bunches of fixes. Typos, bugs, etc.
Added 'gunzip -t'. inittab support _almost_ works (but it isn't
ready for prime time useage yet).
-Erik
Diffstat (limited to 'procps')
-rw-r--r-- | procps/kill.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/procps/kill.c b/procps/kill.c index 0ba6d76ce..e72b73493 100644 --- a/procps/kill.c +++ b/procps/kill.c | |||
@@ -183,7 +183,7 @@ extern int kill_main (int argc, char **argv) | |||
183 | 183 | ||
184 | do_it_now: | 184 | do_it_now: |
185 | 185 | ||
186 | while (argc >= 1) { | 186 | while (--argc >= 0) { |
187 | int pid; | 187 | int pid; |
188 | struct stat statbuf; | 188 | struct stat statbuf; |
189 | char pidpath[20]="/proc/"; | 189 | char pidpath[20]="/proc/"; |
@@ -198,6 +198,7 @@ do_it_now: | |||
198 | fprintf(stderr, "kill: (%d) - No such pid\n", pid); | 198 | fprintf(stderr, "kill: (%d) - No such pid\n", pid); |
199 | exit( FALSE); | 199 | exit( FALSE); |
200 | } | 200 | } |
201 | fprintf(stderr, "sig = %d\n", sig); | ||
201 | if (kill (pid, sig) != 0) { | 202 | if (kill (pid, sig) != 0) { |
202 | perror (*argv); | 203 | perror (*argv); |
203 | exit ( FALSE); | 204 | exit ( FALSE); |