Hans Leidekker : hnetcfg/tests: Ignore case when comparing filenames.

Alexandre Julliard julliard at winehq.org
Thu May 10 18:23:16 CDT 2018


Module: wine
Branch: master
Commit: 8e29f491c4ff92d18c60715f7013ae698c802e29
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8e29f491c4ff92d18c60715f7013ae698c802e29

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu May 10 14:56:00 2018 +0200

hnetcfg/tests: Ignore case when comparing filenames.

Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 4d70818..4ee19d8 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 );




More information about the wine-cvs mailing list