mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
msi: Perform a case insensitive match on the volume label.
This commit is contained in:
parent
a214a3c3da
commit
3ad3a184d5
@ -68,7 +68,7 @@ static BOOL source_matches_volume(MSIMEDIAINFO *mi, LPCWSTR source_root)
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
return !strcmpW( mi->volume_label, volume_name );
|
||||
return !strcmpiW( mi->volume_label, volume_name );
|
||||
}
|
||||
|
||||
static UINT msi_change_media(MSIPACKAGE *package, MSIMEDIAINFO *mi)
|
||||
|
Loading…
Reference in New Issue
Block a user