svn commit: trunk/busybox/shell

vda at busybox.net vda at busybox.net
Wed Apr 11 20:43:33 UTC 2007


Author: vda
Date: 2007-04-11 13:43:31 -0700 (Wed, 11 Apr 2007)
New Revision: 18405

Log:
ash: fix kill -l (by Mats Erik Andersson <mats.andersson64 at comhem.se>)


Modified:
   trunk/busybox/shell/ash.c


Changeset:
Modified: trunk/busybox/shell/ash.c
===================================================================
--- trunk/busybox/shell/ash.c	2007-04-11 19:27:22 UTC (rev 18404)
+++ trunk/busybox/shell/ash.c	2007-04-11 20:43:31 UTC (rev 18405)
@@ -3573,7 +3573,7 @@
 		if (!*argv) {
 			for (i = 1; i < NSIG; i++) {
 				name = get_signame(i);
-				if (isdigit(*name))
+				if (!isdigit(*name))
 					out1fmt(snlfmt, name);
 			}
 			return 0;




More information about the busybox-cvs mailing list