Skip to content
Snippets Groups Projects
Commit 3ad3a184 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard
Browse files

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

parent a214a3c3
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment