aboutsummaryrefslogtreecommitdiff
path: root/busybox.c
diff options
context:
space:
mode:
authorJohn Beppu <beppu@lbox.org>2000-04-13 03:36:01 +0000
committerJohn Beppu <beppu@lbox.org>2000-04-13 03:36:01 +0000
commitb4f8606c05f8a256b515633e48df954ead1260ef (patch)
tree1c2b1b24437d859f22e11a019631e908b388420c /busybox.c
parent08e7f75ba2dac6d9f5571186ad3ff7211f66f185 (diff)
downloadbusybox-b4f8606c05f8a256b515633e48df954ead1260ef.tar.gz
- the message that comes up when busybox is invoked
w/o parameters was extending beyond the 80th column
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/busybox.c b/busybox.c
index b65b13e65..a14711a67 100644
--- a/busybox.c
+++ b/busybox.c
@@ -379,9 +379,10 @@ int busybox_main(int argc, char **argv)
fprintf(stderr, "Usage: busybox [function] [arguments]...\n");
fprintf(stderr, " or: [function] [arguments]...\n\n");
fprintf(stderr,
- "\tBusyBox is a multi-call binary that combines many common Unix utilities into a\n"
- "\tsingle executable. Most people will create a link to busybox for each function\n"
- "\tthey wish to use, and BusyBox will act like whatever it was invoked as.\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");
fprintf(stderr, "\nCurrently defined functions:\n");
while (a->name != 0) {