svn commit: trunk/busybox/shell

vda at busybox.net vda at busybox.net
Sat Feb 24 13:42:57 UTC 2007


Author: vda
Date: 2007-02-24 05:42:56 -0800 (Sat, 24 Feb 2007)
New Revision: 17971

Log:
ash: fix compile problems


Modified:
   trunk/busybox/shell/ash.c


Changeset:
Modified: trunk/busybox/shell/ash.c
===================================================================
--- trunk/busybox/shell/ash.c	2007-02-23 21:11:02 UTC (rev 17970)
+++ trunk/busybox/shell/ash.c	2007-02-24 13:42:56 UTC (rev 17971)
@@ -8099,6 +8099,9 @@
 #if ENABLE_ASH_GETOPTS
 static int getoptscmd(int, char **);
 #endif
+#if !ENABLE_FEATURE_SH_EXTRA_QUIET
+static int helpcmd(int argc, char **argv);
+#endif
 #if ENABLE_ASH_MATH_SUPPORT
 static int letcmd(int, char **);
 #endif
@@ -11357,7 +11360,7 @@
 	out1fmt("\nBuilt-in commands:\n-------------------\n");
 	for (col = 0, i = 0; i < NUMBUILTINS; i++) {
 		col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '),
-					  builtincmd[i].name + 1);
+					builtintab[i].name + 1);
 		if (col > 60) {
 			out1fmt("\n");
 			col = 0;




More information about the busybox-cvs mailing list