urlmon: Accept uppercase extension name in AsyncInstallDistributionUnit.

This commit is contained in:
Qian Hong 2013-11-13 06:31:17 +08:00 committed by Alexandre Julliard
parent c28d619286
commit f96fde3831
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ static HRESULT install_file(install_ctx_t *ctx, const WCHAR *cache_file)
if(!ext)
ext = ptr;
if(!strcmpW(ext, cab_extW)) {
if(!strcmpiW(ext, cab_extW)) {
hres = install_cab_file(ctx);
}else {
FIXME("Unsupported extension %s\n", debugstr_w(ext));