[BusyBox-cvs] svn commit: trunk/busybox/shell

landley at busybox.net landley at busybox.net
Sun Aug 14 19:16:54 UTC 2005


Author: landley
Date: 2005-08-14 13:16:51 -0600 (Sun, 14 Aug 2005)
New Revision: 11148

Log:
Patch from Stephane Billiart to improve ash error message.


Modified:
   trunk/busybox/shell/ash.c


Changeset:
Modified: trunk/busybox/shell/ash.c
===================================================================
--- trunk/busybox/shell/ash.c	2005-08-14 18:46:34 UTC (rev 11147)
+++ trunk/busybox/shell/ash.c	2005-08-14 19:16:51 UTC (rev 11148)
@@ -6606,7 +6606,7 @@
 		} 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);




More information about the busybox-cvs mailing list