mountmgr: Retrieve the unix-name from the alias.
If, at some point, we change that, we can add a Wine-only nsi table that holds the luid to unix-name mapping. Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
79c12f15b4
commit
76b31a2ed8
|
@ -1003,7 +1003,7 @@ static BOOL map_adapter_name( const NET_LUID *luid, char *unix_name, DWORD len )
|
|||
{
|
||||
WCHAR unix_nameW[IF_NAMESIZE];
|
||||
|
||||
if (ConvertInterfaceLuidToNameW( luid, unix_nameW, ARRAY_SIZE(unix_nameW) )) return FALSE;
|
||||
if (ConvertInterfaceLuidToAlias( luid, unix_nameW, ARRAY_SIZE(unix_nameW) )) return FALSE;
|
||||
return WideCharToMultiByte( CP_UNIXCP, 0, unix_nameW, -1, unix_name, len, NULL, NULL ) != 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -260,7 +260,7 @@ static UInt8 map_option( ULONG option )
|
|||
#define IF_NAMESIZE 16
|
||||
static BOOL map_adapter_name( const NET_LUID *luid, WCHAR *unix_name, DWORD len )
|
||||
{
|
||||
return !ConvertInterfaceLuidToNameW( luid, unix_name, len );
|
||||
return !ConvertInterfaceLuidToAlias( luid, unix_name, len );
|
||||
}
|
||||
|
||||
static CFStringRef find_service_id( const NET_LUID *adapter )
|
||||
|
|
Loading…
Reference in New Issue