From ed6ff5edfc17d0d84fc4935a5d1797d35f462062 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 30 Sep 2016 12:28:37 +0200 Subject: 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 --- shell/hush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/hush.c') diff --git a/shell/hush.c b/shell/hush.c index b9dd84f..3c4621f 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 -- cgit v1.1