diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/appletlib.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index d5a2d06af..80adff5e7 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -575,17 +575,19 @@ static int busybox_main(char **argv) | |||
575 | output_width -= sizeof("start-stop-daemon, ") + 8; | 575 | output_width -= sizeof("start-stop-daemon, ") + 8; |
576 | 576 | ||
577 | printf("%s multi-call binary\n", bb_banner); /* reuse const string... */ | 577 | printf("%s multi-call binary\n", bb_banner); /* reuse const string... */ |
578 | printf("Copyright (C) 1998-2006 Erik Andersen, Rob Landley, and others.\n" | 578 | printf("Copyright (C) 1998-2007 Erik Andersen, Rob Landley, Denys Vlasenko\n" |
579 | "Licensed under GPLv2. See source distribution for full notice.\n" | 579 | "and others. Licensed under GPLv2.\n" |
580 | "See source distribution for full notice.\n" | ||
580 | "\n" | 581 | "\n" |
581 | "Usage: busybox [function] [arguments]...\n" | 582 | "Usage: busybox [function] [arguments]...\n" |
582 | " or: [function] [arguments]...\n" | 583 | " or: function [arguments]...\n" |
583 | "\n" | 584 | "\n" |
584 | "\tBusyBox is a multi-call binary that combines many common Unix\n" | 585 | "\tBusyBox is a multi-call binary that combines many common Unix\n" |
585 | "\tutilities into a single executable. Most people will create a\n" | 586 | "\tutilities into a single executable. Most people will create a\n" |
586 | "\tlink to busybox for each function they wish to use and BusyBox\n" | 587 | "\tlink to busybox for each function they wish to use and BusyBox\n" |
587 | "\twill act like whatever it was invoked as!\n" | 588 | "\twill act like whatever it was invoked as!\n" |
588 | "\nCurrently defined functions:\n"); | 589 | "\n" |
590 | "Currently defined functions:\n"); | ||
589 | col = 0; | 591 | col = 0; |
590 | a = applet_names; | 592 | a = applet_names; |
591 | while (*a) { | 593 | while (*a) { |