From 35ef31cafde2c243a4afa6002aa37ae2f8876a2f Mon Sep 17 00:00:00 2001 From: Juan Carlos Luciani Date: Thu, 21 Jun 2007 22:46:40 +0000 Subject: [PATCH] Changed calls to _stricmp to stricmp to fix unresolved external problem when the setting DisableSecureConnections is configured. --- CASA-auth-token/client/library/engine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CASA-auth-token/client/library/engine.c b/CASA-auth-token/client/library/engine.c index 0fd2fb07..173918d8 100644 --- a/CASA-auth-token/client/library/engine.c +++ b/CASA-auth-token/client/library/engine.c @@ -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; }