diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-25 18:13:53 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-25 18:13:53 +0000 |
commit | 67c5194a104e193ec26bad4013c2a9aa9d73312f (patch) | |
tree | 32b6129967a8b5c922b72843efc7fc6683287181 /applets | |
parent | 7a5c6a597d9863949fff0a7044ac076aea2d41b2 (diff) | |
download | busybox-w32-67c5194a104e193ec26bad4013c2a9aa9d73312f.tar.gz busybox-w32-67c5194a104e193ec26bad4013c2a9aa9d73312f.tar.bz2 busybox-w32-67c5194a104e193ec26bad4013c2a9aa9d73312f.zip |
Some busybox updates. See the changelog for details if you care.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@338 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 67485de8d..d59b2855e 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -83,7 +83,7 @@ static const struct Applet applets[] = { | |||
83 | #ifdef BB_FREE //usr/bin | 83 | #ifdef BB_FREE //usr/bin |
84 | {"free", free_main}, | 84 | {"free", free_main}, |
85 | #endif | 85 | #endif |
86 | #ifdef BB_DEALLOCVT //usr/bin | 86 | #ifdef BB_DEALLOCVT //usr/bin |
87 | {"deallocvt", deallocvt_main}, | 87 | {"deallocvt", deallocvt_main}, |
88 | #endif | 88 | #endif |
89 | #ifdef BB_FSCK_MINIX //sbin | 89 | #ifdef BB_FSCK_MINIX //sbin |
@@ -328,7 +328,7 @@ int busybox_main(int argc, char **argv) | |||
328 | 328 | ||
329 | while (a->name != 0) { | 329 | while (a->name != 0) { |
330 | col+=fprintf(stderr, "%s%s", ((col==0)? "\t":", "), (a++)->name); | 330 | col+=fprintf(stderr, "%s%s", ((col==0)? "\t":", "), (a++)->name); |
331 | if (col>60) { | 331 | if (col>60 && a->name != 0) { |
332 | fprintf(stderr, ",\n"); | 332 | fprintf(stderr, ",\n"); |
333 | col=0; | 333 | col=0; |
334 | } | 334 | } |