svn commit: trunk/busybox/procps

pgf at busybox.net pgf at busybox.net
Wed Nov 14 23:48:35 UTC 2007


Author: pgf
Date: 2007-11-14 15:48:35 -0800 (Wed, 14 Nov 2007)
New Revision: 20423

Log:
bad syntax error should go to stderr


Modified:
   trunk/busybox/procps/kill.c


Changeset:
Modified: trunk/busybox/procps/kill.c
===================================================================
--- trunk/busybox/procps/kill.c	2007-11-14 10:18:33 UTC (rev 20422)
+++ trunk/busybox/procps/kill.c	2007-11-14 23:48:35 UTC (rev 20423)
@@ -129,7 +129,7 @@
 
 	/* Pid or name is required for kill/killall */
 	if (argc < 1) {
-		puts("You need to specify whom to kill");
+		bb_error_msg("You need to specify whom to kill");
 		return EXIT_FAILURE;
 	}
 




More information about the busybox-cvs mailing list