[PATCH 4/6] iphlpapi: Use the ANSI codepage for the convert interface name functions.

Huw Davies huw at codeweavers.com
Thu Aug 19 02:53:44 CDT 2021


The name in these functions is now not the Unix interface name.

Signed-off-by: Huw Davies <huw at codeweavers.com>
---
 dlls/iphlpapi/iphlpapi_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c
index ff6b858d48b..408ac14bd1b 100644
--- a/dlls/iphlpapi/iphlpapi_main.c
+++ b/dlls/iphlpapi/iphlpapi_main.c
@@ -4265,7 +4265,7 @@ DWORD WINAPI ConvertInterfaceLuidToNameA(const NET_LUID *luid, char *name, SIZE_
     err = ConvertInterfaceLuidToNameW( luid, nameW, ARRAY_SIZE(nameW) );
     if (err) return err;
 
-    if (!WideCharToMultiByte( CP_UNIXCP, 0, nameW, -1, name, len, NULL, NULL ))
+    if (!WideCharToMultiByte( CP_ACP, 0, nameW, -1, name, len, NULL, NULL ))
         err = GetLastError();
     return err;
 }
@@ -4340,7 +4340,7 @@ DWORD WINAPI ConvertInterfaceNameToLuidA(const char *name, NET_LUID *luid)
     TRACE( "(%s %p)\n", debugstr_a(name), luid );
 
     if (!name) return ERROR_INVALID_NAME;
-    if (!MultiByteToWideChar( CP_UNIXCP, 0, name, -1, nameW, ARRAY_SIZE(nameW) ))
+    if (!MultiByteToWideChar( CP_ACP, 0, name, -1, nameW, ARRAY_SIZE(nameW) ))
         return GetLastError();
 
     return ConvertInterfaceNameToLuidW( nameW, luid );
-- 
2.23.0




More information about the wine-devel mailing list