From 830c040f6fbfff4f26156fd0d9aff38b66a31a41 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 14 Aug 2005 19:17:31 +0000 Subject: [PATCH] Patch from Stephane Billiart to improve ash error message. --- busybox/shell/ash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: } else pid = number(*argv); if (kill(pid, signo) != 0) { - sh_warnx("%m\n"); + sh_warnx("kill %d: %s", pid, errmsg(errno, NULL)); i = 1; } } while (*++argv); -- 2.25.1