aboutsummaryrefslogtreecommitdiff
path: root/busybox.c
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-04 01:10:25 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-04 01:10:25 +0000
commit3424c7bbe585d02d8217b2a798d83e016b3bd852 (patch)
tree7532471be456e2c9f11eab88cb34f1e38abd184f /busybox.c
parent1e0848972f74b518cd8cc44f9422526ca667cc86 (diff)
downloadbusybox-w32-3424c7bbe585d02d8217b2a798d83e016b3bd852.tar.gz
busybox-w32-3424c7bbe585d02d8217b2a798d83e016b3bd852.tar.bz2
busybox-w32-3424c7bbe585d02d8217b2a798d83e016b3bd852.zip
Bunches of fixes. Typos, bugs, etc.
Added 'gunzip -t'. inittab support _almost_ works (but it isn't ready for prime time useage yet). -Erik git-svn-id: svn://busybox.net/trunk/busybox@276 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/busybox.c b/busybox.c
index 403b14008..a35306915 100644
--- a/busybox.c
+++ b/busybox.c
@@ -102,6 +102,9 @@ static const struct Applet applets[] = {
102#ifdef BB_LN //bin 102#ifdef BB_LN //bin
103 {"ln", ln_main}, 103 {"ln", ln_main},
104#endif 104#endif
105#ifdef BB_LOADACM //usr/bin
106 {"loadacm", loadacm_main},
107#endif
105#ifdef BB_LOADFONT //usr/bin 108#ifdef BB_LOADFONT //usr/bin
106 {"loadfont", loadfont_main}, 109 {"loadfont", loadfont_main},
107#endif 110#endif
@@ -232,9 +235,6 @@ static const struct Applet applets[] = {
232#ifdef BB_GZIP //bin 235#ifdef BB_GZIP //bin
233 {"gzip", gzip_main}, 236 {"gzip", gzip_main},
234#endif 237#endif
235#ifdef BB_LOADACM //usr/bin
236 {"loadacm", loadacm_main},
237#endif
238 {0} 238 {0}
239}; 239};
240 240