From 5276402f2cdf39f8963243d7f54bf7f8c32ffd29 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 24 Feb 2007 13:42:56 +0000 Subject: ash: fix compile problems --- shell/ash.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shell/ash.c b/shell/ash.c index a7e2823..8e8577a 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -8099,6 +8099,9 @@ static int exportcmd(int, char **); #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 @@ helpcmd(int argc, char **argv) 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; -- cgit v1.1