From 7eed6a5cd03b5f5eba0de93498b781c8f5538fb7 Mon Sep 17 00:00:00 2001 From: cantor Date: Tue, 14 Jun 2005 04:37:56 +0000 Subject: [PATCH] Some Unix fixes. git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@1707 cb58f699-b61c-0410-a6fe-9272a202ed29 --- nsapi_shib/nsapi_shib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nsapi_shib/nsapi_shib.cpp b/nsapi_shib/nsapi_shib.cpp index 2d3a5ff..465ed56 100644 --- a/nsapi_shib/nsapi_shib.cpp +++ b/nsapi_shib/nsapi_shib.cpp @@ -65,9 +65,9 @@ #include #include #include -#include #ifdef WIN32 +# include # define XP_WIN32 #else # define XP_UNIX @@ -459,7 +459,7 @@ pair SunRequestMapper::getBool(const char* name, const char* ns) cons if (stn && !ns && name) { // Override boolean properties. const char* param=pblock_findval(name,stn->m_pb); - if (param && (!strcmp(param,"1") || !util_strcasecmp(param,"true"))) + if (param && (!strcmp(param,"1") || !strcasecmp(param,"true"))) return make_pair(true,true); } return s ? s->getBool(name,ns) : make_pair(false,false); -- 2.1.4