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;
diff --git a/procps/ps.c b/procps/ps.c
index 0842a22..41b8465 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -40,6 +40,9 @@
#define bb_need_help
#include "messages.c"
+#define TERMINAL_WIDTH 79 /* not 80 in case terminal has linefold bug */
+
+
#if ! defined BB_FEATURE_USE_DEVPS_PATCH
@@ -124,9 +127,9 @@
int len, i, c;
#ifdef BB_FEATURE_AUTOWIDTH
struct winsize win = { 0, 0 };
- int terminal_width = 0;
+ int terminal_width = TERMINAL_WIDTH;
#else
-#define terminal_width 79
+#define terminal_width TERMINAL_WIDTH
#endif
@@ -142,7 +145,7 @@
dir = opendir("/proc");
if (!dir)
- fatalError("Can't open /proc");
+ fatalError("Can't open /proc\n");
#ifdef BB_FEATURE_AUTOWIDTH
ioctl(fileno(stdout), TIOCGWINSZ, &win);
@@ -214,9 +217,9 @@
char groupName[10] = "";
#ifdef BB_FEATURE_AUTOWIDTH
struct winsize win = { 0, 0 };
- int terminal_width = 0;
+ int terminal_width = TERMINAL_WIDTH;
#else
-#define terminal_width 79
+#define terminal_width TERMINAL_WIDTH
#endif
if (argc > 1 && **(argv + 1) == '-')