diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-07 16:19:30 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-07 16:19:30 +0000 |
commit | 328468b906ee7644380141af2b9e41f9236155aa (patch) | |
tree | a6558c7605084293c1a55d490a9d2d2d11f46fa8 | |
parent | a9c88fe244d66c2c1edd11ee00777c5519dd25db (diff) | |
download | busybox-w32-328468b906ee7644380141af2b9e41f9236155aa.tar.gz busybox-w32-328468b906ee7644380141af2b9e41f9236155aa.tar.bz2 busybox-w32-328468b906ee7644380141af2b9e41f9236155aa.zip |
Oops. Left in some debug noise.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@439 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | kill.c | 2 | ||||
-rw-r--r-- | procps/kill.c | 2 |
2 files changed, 0 insertions, 4 deletions
@@ -230,8 +230,6 @@ extern int kill_main(int argc, char **argv) | |||
230 | for(; pidList && pidList!=0; pidList++) { | 230 | for(; pidList && pidList!=0; pidList++) { |
231 | if (kill(*pidList, sig) != 0) | 231 | if (kill(*pidList, sig) != 0) |
232 | fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); | 232 | fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); |
233 | else | ||
234 | errorMsg( "killed pid '%d'\n", *pidList); | ||
235 | } | 233 | } |
236 | /* Note that we don't bother to free the memory | 234 | /* Note that we don't bother to free the memory |
237 | * allocated in findPidByName(). It will be freed | 235 | * allocated in findPidByName(). It will be freed |
diff --git a/procps/kill.c b/procps/kill.c index c6dc79f65..db4842457 100644 --- a/procps/kill.c +++ b/procps/kill.c | |||
@@ -230,8 +230,6 @@ extern int kill_main(int argc, char **argv) | |||
230 | for(; pidList && pidList!=0; pidList++) { | 230 | for(; pidList && pidList!=0; pidList++) { |
231 | if (kill(*pidList, sig) != 0) | 231 | if (kill(*pidList, sig) != 0) |
232 | fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); | 232 | fatalError( "Could not kill pid '%d': %s\n", *pidList, strerror(errno)); |
233 | else | ||
234 | errorMsg( "killed pid '%d'\n", *pidList); | ||
235 | } | 233 | } |
236 | /* Note that we don't bother to free the memory | 234 | /* Note that we don't bother to free the memory |
237 | * allocated in findPidByName(). It will be freed | 235 | * allocated in findPidByName(). It will be freed |