aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-08-14 19:16:51 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-08-14 19:16:51 +0000
commit2d072c242295f3e6e775b95a8aee1a60fb4d849b (patch)
tree9f708a881a3d5e9615dcf404f1617208e9c456ea /shell
parentd03d9f9b25268b4709ffafff8552c470417d6696 (diff)
downloadbusybox-w32-2d072c242295f3e6e775b95a8aee1a60fb4d849b.tar.gz
busybox-w32-2d072c242295f3e6e775b95a8aee1a60fb4d849b.tar.bz2
busybox-w32-2d072c242295f3e6e775b95a8aee1a60fb4d849b.zip
Patch from Stephane Billiart to improve ash error message.
git-svn-id: svn://busybox.net/trunk/busybox@11148 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 9660890f9..5f859a1fb 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -6606,7 +6606,7 @@ usage:
6606 } else 6606 } else
6607 pid = number(*argv); 6607 pid = number(*argv);
6608 if (kill(pid, signo) != 0) { 6608 if (kill(pid, signo) != 0) {
6609 sh_warnx("%m\n"); 6609 sh_warnx("kill %d: %s", pid, errmsg(errno, NULL));
6610 i = 1; 6610 i = 1;
6611 } 6611 }
6612 } while (*++argv); 6612 } while (*++argv);