Changed calls to _stricmp to stricmp to fix unresolved external problem

when the setting DisableSecureConnections is configured.
This commit is contained in:
Juan Carlos Luciani 2007-06-21 22:46:40 +00:00
parent 5afe199508
commit 35ef31cafd

View File

@ -1238,11 +1238,11 @@ InitializeLibrary(void)
DbgTrace(0, "-InitializeLibrary- DisableSecureConnections setting configured = %s\n", pDisableSecureConnections);
// Adjust the g_rpcFlags variable based on the setting
if (_stricmp(pDisableSecureConnections, "true") == 0)
if (stricmp(pDisableSecureConnections, "true") == 0)
{
g_rpcFlags &= ~SECURE_RPC_FLAG;
}
else if (_stricmp(pDisableSecureConnections, "false") == 0)
else if (stricmp(pDisableSecureConnections, "false") == 0)
{
g_rpcFlags |= SECURE_RPC_FLAG;
}