aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
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 */