[PATCH] hnetcfg/tests: Ignore case when comparing filenames.

Hans Leidekker hans at codeweavers.com
Thu May 10 07:56:00 CDT 2018


Signed-off-by: Hans Leidekker <hans at codeweavers.com>
---
 dlls/hnetcfg/tests/policy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/hnetcfg/tests/policy.c b/dlls/hnetcfg/tests/policy.c
index 4d70818293..4ee19d8db4 100644
--- a/dlls/hnetcfg/tests/policy.c
+++ b/dlls/hnetcfg/tests/policy.c
@@ -141,7 +141,7 @@ static void test_NetFwAuthorizedApplication(void)
 
         hr = INetFwAuthorizedApplication_get_ProcessImageFileName(app, &bstr);
         ok(hr == S_OK, "got: %08x\n", hr);
-        ok(!lstrcmpW(bstr,image), "got: %s\n", wine_dbgstr_w(bstr));
+        ok(!lstrcmpiW(bstr,image), "got: %s\n", wine_dbgstr_w(bstr));
         SysFreeString( bstr );
 
         SysFreeString( image );
-- 
2.11.0




More information about the wine-devel mailing list