A number of additional fixed from Pavel Roskin, note some more bugs in the
TODO list.  Add Glenn to the Authors list for writing a mini ar for BusyBox,
which is now included.
 -Erik
diff --git a/procps/kill.c b/procps/kill.c
index 0487f6a..1f1bee4 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -234,6 +234,9 @@
 			pid_t* pidList;
 
 			pidList = findPidByName( *argv);
+			if (!pidList)
+				errorMsg( "%s: no process killed\n", *argv);
+
 			for(; pidList && *pidList!=0; pidList++) {
 				if (*pidList==myPid)
 					continue;