From 54c667caaa76e9c010cfe9d8b35cbc9711d2a67a Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sun, 10 May 2026 11:58:02 +0200 Subject: [PATCH] [NETCFGX] Fix calls to wcsicmp --- dll/win32/netcfgx/inetcfgcomp_iface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dll/win32/netcfgx/inetcfgcomp_iface.c b/dll/win32/netcfgx/inetcfgcomp_iface.c index ee59229ba59..55c346447ca 100644 --- a/dll/win32/netcfgx/inetcfgcomp_iface.c +++ b/dll/win32/netcfgx/inetcfgcomp_iface.c @@ -110,13 +110,13 @@ INetCfgComponentBindings_fnSupportsBindingInterface( if (pszEnd == NULL) { TRACE("%S -- %S\n", pszStart, pszwInterfaceName); - return (wcsicmp(pszStart, pszwInterfaceName)) ? S_FALSE : S_OK; + return (_wcsicmp(pszStart, pszwInterfaceName)) ? S_FALSE : S_OK; } else { *pszEnd = UNICODE_NULL; TRACE("%S -- %S\n", pszStart, pszwInterfaceName); - if (wcsicmp(pszStart, pszwInterfaceName) == 0) + if (_wcsicmp(pszStart, pszwInterfaceName) == 0) return S_OK; *pszEnd = L',';