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',';