diff options
author | Ron Yorston <rmy@pobox.com> | 2023-08-17 14:08:11 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2023-08-17 14:08:11 +0100 |
commit | 460463c81f6f7eac4a4376ac7cae9ace715da89e (patch) | |
tree | d0790d995bbd80d7bf8d00d256a17a839cc22672 | |
parent | 44349e33d7cf05225f8c39cee7fc2b89cfc72ce8 (diff) | |
download | busybox-w32-460463c81f6f7eac4a4376ac7cae9ace715da89e.tar.gz busybox-w32-460463c81f6f7eac4a4376ac7cae9ace715da89e.tar.bz2 busybox-w32-460463c81f6f7eac4a4376ac7cae9ace715da89e.zip |
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".
-rw-r--r-- | libbb/appletlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
1307 | # if ENABLE_FEATURE_UTF8_MANIFEST | 1307 | # if ENABLE_FEATURE_UTF8_MANIFEST |
1308 | if (GetACP() != CP_UTF8) { | 1308 | if (GetACP() != CP_UTF8) { |
1309 | full_write2_str(bb_basename(argv[0])); | 1309 | full_write2_str(bb_basename(argv[0])); |
1310 | full_write2_str(": needs UTF8 code page\n"); | 1310 | full_write2_str(": UTF8 manifest not supported\n"); |
1311 | return 1; | 1311 | return 1; |
1312 | } | 1312 | } |
1313 | # endif | 1313 | # endif |