From 460463c81f6f7eac4a4376ac7cae9ace715da89e Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Thu, 17 Aug 2023 14:08:11 +0100 Subject: libbb: change message regarding UTF-8 manifest When the UTF-8 manifest is included in the binary but the ANSI code page isn't UTF-8 report "UTF8 manifest not supported". --- libbb/appletlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbb/appletlib.c b/libbb/appletlib.c index a70b3a4c2..8801c732d 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -1307,7 +1307,7 @@ int main(int argc UNUSED_PARAM, char **argv) # if ENABLE_FEATURE_UTF8_MANIFEST if (GetACP() != CP_UTF8) { full_write2_str(bb_basename(argv[0])); - full_write2_str(": needs UTF8 code page\n"); + full_write2_str(": UTF8 manifest not supported\n"); return 1; } # endif -- cgit v1.2.3-55-g6feb