diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-20 03:40:04 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-20 03:40:04 +0200 |
commit | 0793491ff884bbb70b51c2b05c42d5dad60bcc5f (patch) | |
tree | 84fca81a430c7d24b14b678bcdad738aeada6fd2 /shell/hush.c | |
parent | a67a9627d0ada5214d43d06a34387cd9604108c8 (diff) |
hush: enable "lash is deprecated, please use hush instead" message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 b71e1b624..5698bb5a5 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -6741,7 +6741,7 @@ int hush_main(int argc, char **argv) int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int lash_main(int argc, char **argv) { - //bb_error_msg("lash is deprecated, please use hush instead"); + bb_error_msg("lash is deprecated, please use hush instead"); return hush_main(argc, argv); } #endif |