[PATCH 2/3] chcp: Print the active code page after successfully setting the new one

Hugh McMaster hugh.mcmaster at outlook.com
Tue Nov 23 06:41:39 CST 2021


Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
---
 programs/chcp.com/main.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/programs/chcp.com/main.c b/programs/chcp.com/main.c
index 5b3486a4366..cc64e044b06 100644
--- a/programs/chcp.com/main.c
+++ b/programs/chcp.com/main.c
@@ -102,10 +102,11 @@ int __cdecl wmain(int argc, WCHAR *argv[])
         int codepage = _wtoi(argv[1]);
         int success = SetConsoleCP(codepage) && SetConsoleOutputCP(codepage);
 
-        if (!success)
-        {
+        if (success)
+            output_message(STRING_ACTIVE_CODE_PAGE, codepage);
+        else
             output_message(STRING_INVALID_CODE_PAGE);
-        }
+
         return !success;
     }
 
-- 
2.34.0




More information about the wine-devel mailing list