diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-05 21:10:53 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-05 21:10:53 +0000 |
commit | 01c27fc5ac89b07821a5430880d771e3c993c1c1 (patch) | |
tree | 818dc4f8d44b4986c1c41d72b054c035e605b503 /applets | |
parent | a3310527db919eeffcd106324fedf41c04b71707 (diff) |
which: -84 bytes
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" |