mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 08:50:24 +08:00
[NETCFGX] Fix calls to wcsicmp
This commit is contained in:
@@ -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',';
|
||||
|
||||
Reference in New Issue
Block a user