Commit 3ad3a184 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Perform a case insensitive match on the volume label.

parent a214a3c3
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment