aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-11-24 02:23:51 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-11-24 02:23:51 +0000
commitfe5e23bf75043302a3492c9a7cd2f30f20f51b2e (patch)
treec6d5a70e6430755a0e20c682c090dfbedbd254ce /shell/ash.c
parentc3c6659f12e4133054ae4a6708fc4ac299c0d098 (diff)
downloadbusybox-fe5e23bf75043302a3492c9a7cd2f30f20f51b2e.tar.gz
remove echo_main -> bb_echo indirection
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 4113ce8e2..7f7531650 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -11003,7 +11003,7 @@ exitcmd(int argc, char **argv)
static int
echocmd(int argc, char **argv)
{
- return bb_echo(argc, argv);
+ return echo_main(argc, argv);
}
#endif