aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-08-21 00:05:51 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-08-21 00:05:51 +0200
commit1cc4b13917c51acce1ce0d8a2cb58ab97f3756d2 (patch)
tree974a54823fcf0c9846d29c55c6da0177a4f56796 /shell/hush.c
parent263cff9a2f4480cd922ecff5e382e8fd804957eb (diff)
downloadbusybox-w32-1cc4b13917c51acce1ce0d8a2cb58ab97f3756d2.tar.gz
busybox-w32-1cc4b13917c51acce1ce0d8a2cb58ab97f3756d2.tar.bz2
busybox-w32-1cc4b13917c51acce1ce0d8a2cb58ab97f3756d2.zip
msh: aliased to hush
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 5698bb5a5..7ac29ace2 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -6746,6 +6746,15 @@ int lash_main(int argc, char **argv)
6746} 6746}
6747#endif 6747#endif
6748 6748
6749#if ENABLE_MSH
6750int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6751int msh_main(int argc, char **argv)
6752{
6753 //bb_error_msg("msh is deprecated, please use hush instead");
6754 return hush_main(argc, argv);
6755}
6756#endif
6757
6749 6758
6750/* 6759/*
6751 * Built-ins 6760 * Built-ins