Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-29 01:57:12 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-29 01:57:12 +0400
commit450196c119e22268c9176cb7887cceb22bf8e9ff (patch)
treee4a76e61f40840b4dcf2015d55f9ecfa93a8ee23 /procps
parentb7cffd4bedf14770a7096a11a6e46cc497ff37c6 (diff)
ps: work around libc bug: printf("%.*s\n", MAX_INT, buffer)
Diffstat (limited to 'procps')
-rw-r--r--procps/ps.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/procps/ps.c b/procps/ps.c
index c1cb64397..2be0b3605 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -262,7 +262,9 @@ int ps_main(int argc, char **argv)
parse_o(default_o);
post_process();
- terminal_width = INT_MAX;
+ /* Was INT_MAX, but some libc's go belly up with printf("%.*s")
+ * and such large widths */
+ terminal_width = 30000;
if (isatty(1)) {
get_terminal_width_height(1, &terminal_width, NULL);
terminal_width--;