From 3d1b7f16e7cfabda7e3938d922ffbe585a4459d4 Mon Sep 17 00:00:00 2001 From: Juan Carlos Luciani Date: Tue, 9 Jan 2007 05:22:47 +0000 Subject: [PATCH] More code review changes. --- .../Svc/src/com/novell/casa/authtoksvc/EnabledSvcsConfig.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CASA-auth-token/server-java/Svc/src/com/novell/casa/authtoksvc/EnabledSvcsConfig.java b/CASA-auth-token/server-java/Svc/src/com/novell/casa/authtoksvc/EnabledSvcsConfig.java index 1da711bf..b6031843 100644 --- a/CASA-auth-token/server-java/Svc/src/com/novell/casa/authtoksvc/EnabledSvcsConfig.java +++ b/CASA-auth-token/server-java/Svc/src/com/novell/casa/authtoksvc/EnabledSvcsConfig.java @@ -347,8 +347,7 @@ public final class EnabledSvcsConfig else { // First try to obtain the Map of enabled services for the host - // tbd - Should we make this case insensitive? - Map enabledSvcsConfigMap = m_hostsMap.get(hostName); + Map enabledSvcsConfigMap = m_hostsMap.get(hostName.toUpperCase()); if (enabledSvcsConfigMap != null) { return enabledSvcsConfigMap.containsKey(serviceName);