diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-24 12:16:24 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-24 12:16:24 +0000 |
commit | fcfb5c04bbaa52ae7df5d45bc3ddadcc9e935fa1 (patch) | |
tree | afebd34647c52f89637ab2471cc1a2052a38fe44 /libbb | |
parent | e4bc603f0ba296647bd5fc3f1e8e7231effe6676 (diff) | |
download | busybox-fcfb5c04bbaa52ae7df5d45bc3ddadcc9e935fa1.tar.gz |
defconfig: update
appletli.c: add vda's (C)
top: fixlet for incorrect display of "0"
Makefile: reduce stack size from 20k to 16k
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) output_width -= sizeof("start-stop-daemon, ") + 8; printf("%s multi-call binary\n", bb_banner); /* reuse const string... */ - printf("Copyright (C) 1998-2006 Erik Andersen, Rob Landley, and others.\n" - "Licensed under GPLv2. See source distribution for full notice.\n" + printf("Copyright (C) 1998-2007 Erik Andersen, Rob Landley, Denys Vlasenko\n" + "and others. Licensed under GPLv2.\n" + "See source distribution for full notice.\n" "\n" "Usage: busybox [function] [arguments]...\n" - " or: [function] [arguments]...\n" + " or: function [arguments]...\n" "\n" "\tBusyBox is a multi-call binary that combines many common Unix\n" "\tutilities into a single executable. Most people will create a\n" "\tlink to busybox for each function they wish to use and BusyBox\n" "\twill act like whatever it was invoked as!\n" - "\nCurrently defined functions:\n"); + "\n" + "Currently defined functions:\n"); col = 0; a = applet_names; while (*a) { |