diff options
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 625a492f2..9f2eddebd 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -116,12 +116,12 @@ int busybox_main(int argc, char **argv) /* Obtain the terminal width. */ get_terminal_width_height(0, &output_width, NULL); /* leading tab and room to wrap */ - output_width -= 20; - } else output_width = 60; + output_width -= sizeof("start-stop-daemon, ") + 8; + } else output_width = 80 - sizeof("start-stop-daemon, ") - 8; printf("%s\n" - "Copyright (C) 1998-2006 Erik Andersen, Rob Landley, and others.\n" - "Licensed under GPLv2. See source distribution for full notice.\n\n" + "Copyright (C) 1998-2006 Erik Andersen, Rob Landley, and others.\n" + "Licensed under GPLv2. See source distribution for full notice.\n\n" "Usage: busybox [function] [arguments]...\n" " or: [function] [arguments]...\n\n" "\tBusyBox is a multi-call binary that combines many common Unix\n" |