Changed calls to _stricmp to stricmp to fix unresolved external problem
when the setting DisableSecureConnections is configured.
This commit is contained in:
parent
5afe199508
commit
35ef31cafd
@ -1238,11 +1238,11 @@ InitializeLibrary(void)
|
|||||||
DbgTrace(0, "-InitializeLibrary- DisableSecureConnections setting configured = %s\n", pDisableSecureConnections);
|
DbgTrace(0, "-InitializeLibrary- DisableSecureConnections setting configured = %s\n", pDisableSecureConnections);
|
||||||
|
|
||||||
// Adjust the g_rpcFlags variable based on the setting
|
// Adjust the g_rpcFlags variable based on the setting
|
||||||
if (_stricmp(pDisableSecureConnections, "true") == 0)
|
if (stricmp(pDisableSecureConnections, "true") == 0)
|
||||||
{
|
{
|
||||||
g_rpcFlags &= ~SECURE_RPC_FLAG;
|
g_rpcFlags &= ~SECURE_RPC_FLAG;
|
||||||
}
|
}
|
||||||
else if (_stricmp(pDisableSecureConnections, "false") == 0)
|
else if (stricmp(pDisableSecureConnections, "false") == 0)
|
||||||
{
|
{
|
||||||
g_rpcFlags |= SECURE_RPC_FLAG;
|
g_rpcFlags |= SECURE_RPC_FLAG;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user