aboutsummaryrefslogtreecommitdiff
path: root/shell
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
parentc3c6659f12e4133054ae4a6708fc4ac299c0d098 (diff)
downloadbusybox-w32-fe5e23bf75043302a3492c9a7cd2f30f20f51b2e.tar.gz
busybox-w32-fe5e23bf75043302a3492c9a7cd2f30f20f51b2e.tar.bz2
busybox-w32-fe5e23bf75043302a3492c9a7cd2f30f20f51b2e.zip
remove echo_main -> bb_echo indirection
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
-rw-r--r--shell/hush.c2
2 files changed, 2 insertions, 2 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)
11003static int 11003static int
11004echocmd(int argc, char **argv) 11004echocmd(int argc, char **argv)
11005{ 11005{
11006 return bb_echo(argc, argv); 11006 return echo_main(argc, argv);
11007} 11007}
11008#endif 11008#endif
11009 11009
diff --git a/shell/hush.c b/shell/hush.c
index a9c1fe7dd..f7e2a4a14 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -853,7 +853,7 @@ static int builtin_echo(char **argv)
853 argc++; 853 argc++;
854 argv++; 854 argv++;
855 } 855 }
856 return bb_echo(argc, argv - argc); 856 return echo_main(argc, argv - argc);
857} 857}
858 858
859/* built-in 'eval' handler */ 859/* built-in 'eval' handler */