diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-09-30 12:28:37 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-09-30 12:28:37 +0200 |
commit | ed6ff5edfc17d0d84fc4935a5d1797d35f462062 (patch) | |
tree | 6a2d07bbcaeb1617a70690e49edf69cec0de76b2 /shell | |
parent | 50e6d42c1967cbd3b07441876af2a7ff2bbbf63f (diff) | |
download | busybox-ed6ff5edfc17d0d84fc4935a5d1797d35f462062.tar.gz |
hush: enable "msh is deprecated" message in msh stub
After giving a few more years for everyone to notice and migrate,
can nuke all remains of msh.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-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 b9dd84f46..3c4621f67 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -8533,7 +8533,7 @@ int hush_main(int argc, char **argv) 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"); + bb_error_msg("msh is deprecated, please use hush instead"); return hush_main(argc, argv); } #endif |