diff options
author | Denys Vlasenko | 2009-08-21 00:05:51 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-08-21 00:05:51 +0200 |
commit | 1cc4b13917c51acce1ce0d8a2cb58ab97f3756d2 (patch) | |
tree | 974a54823fcf0c9846d29c55c6da0177a4f56796 /shell/hush.c | |
parent | 263cff9a2f4480cd922ecff5e382e8fd804957eb (diff) | |
download | busybox-1cc4b13917c51acce1ce0d8a2cb58ab97f3756d2.zip busybox-1cc4b13917c51acce1ce0d8a2cb58ab97f3756d2.tar.gz |
msh: aliased to hush
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/hush.c b/shell/hush.c index 5698bb5..7ac29ac 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -6746,6 +6746,15 @@ int lash_main(int argc, char **argv) } #endif +#if ENABLE_MSH +int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int msh_main(int argc, char **argv) +{ + //bb_error_msg("msh is deprecated, please use hush instead"); + return hush_main(argc, argv); +} +#endif + /* * Built-ins |