int sleepInterval;
/* Are we interactive? */
- interactive = (wcscmp(lpStationName, L"WinSta0") == 0);
+ interactive = (wcsicmp(lpStationName, L"WinSta0") == 0);
#ifdef DISABLE_NON_INTERACTIVE
/* Do not do anything if the logon session is not interactive. */
/* MSV1_0_INTERACTIVE_LOGON and KERB_INTERACTIVE_LOGON are equivalent for
* our purposes */
- if ( wcscmp(lpAuthentInfoType,L"MSV1_0:Interactive") &&
- wcscmp(lpAuthentInfoType,L"Kerberos:Interactive") )
+ if ( wcsicmp(lpAuthentInfoType,L"MSV1_0:Interactive") &&
+ wcsicmp(lpAuthentInfoType,L"Kerberos:Interactive") )
{
DebugEvent("Unsupported Authentication Info Type: %S",
lpAuthentInfoType);
BOOLEAN interactive;
/* Are we interactive? */
- interactive = (wcscmp(lpStationName, L"WinSta0") == 0);
+ interactive = (wcsicmp(lpStationName, L"WinSta0") == 0);
/* Do not do anything if the logon session is not interactive. */
if (!interactive)