Commit f96fde38 authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard

urlmon: Accept uppercase extension name in AsyncInstallDistributionUnit.

parent c28d6192
......@@ -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));
......
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