diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-24 02:23:51 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-24 02:23:51 +0000 |
commit | fe5e23bf75043302a3492c9a7cd2f30f20f51b2e (patch) | |
tree | c6d5a70e6430755a0e20c682c090dfbedbd254ce /shell/hush.c | |
parent | c3c6659f12e4133054ae4a6708fc4ac299c0d098 (diff) |
remove echo_main -> bb_echo indirection
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 2 |
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) argc++; argv++; } - return bb_echo(argc, argv - argc); + return echo_main(argc, argv - argc); } /* built-in 'eval' handler */ |