diff options
-rw-r--r-- | libbb/appletlib.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index 9a291a93a..1c135fde7 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -887,6 +887,10 @@ int busybox_main(int argc UNUSED_PARAM, char **argv) | |||
887 | dup2(1, 2); | 887 | dup2(1, 2); |
888 | full_write2_str(bb_banner); /* reuse const string */ | 888 | full_write2_str(bb_banner); /* reuse const string */ |
889 | #if ENABLE_PLATFORM_MINGW32 | 889 | #if ENABLE_PLATFORM_MINGW32 |
890 | # if ENABLE_FEATURE_UTF8_MANIFEST | ||
891 | full_write2_str(GetACP() == CP_UTF8 ? " (Unicode on)" | ||
892 | : " (Unicode off)"); | ||
893 | # endif | ||
890 | full_write2_str("\n"); | 894 | full_write2_str("\n"); |
891 | #else | 895 | #else |
892 | full_write2_str(" multi-call binary.\n"); /* reuse */ | 896 | full_write2_str(" multi-call binary.\n"); /* reuse */ |