diff options
author | Rob Landley <rob@landley.net> | 2005-08-14 19:17:31 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-08-14 19:17:31 +0000 |
commit | 830c040f6fbfff4f26156fd0d9aff38b66a31a41 (patch) | |
tree | 52b8097087ef82f0f6a342e9c7bf573ae40e6cb2 | |
parent | 045dedad91253de03cfe4b68b763e5e94b913b81 (diff) | |
download | busybox-w32-830c040f6fbfff4f26156fd0d9aff38b66a31a41.tar.gz busybox-w32-830c040f6fbfff4f26156fd0d9aff38b66a31a41.tar.bz2 busybox-w32-830c040f6fbfff4f26156fd0d9aff38b66a31a41.zip |
Patch from Stephane Billiart to improve ash error message.
-rw-r--r-- | busybox/shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/busybox/shell/ash.c b/busybox/shell/ash.c index f16edbc38..6ab540a69 100644 --- a/busybox/shell/ash.c +++ b/busybox/shell/ash.c | |||
@@ -6637,7 +6637,7 @@ usage: | |||
6637 | } else | 6637 | } else |
6638 | pid = number(*argv); | 6638 | pid = number(*argv); |
6639 | if (kill(pid, signo) != 0) { | 6639 | if (kill(pid, signo) != 0) { |
6640 | sh_warnx("%m\n"); | 6640 | sh_warnx("kill %d: %s", pid, errmsg(errno, NULL)); |
6641 | i = 1; | 6641 | i = 1; |
6642 | } | 6642 | } |
6643 | } while (*++argv); | 6643 | } while (*++argv); |