Normalizing comparison to lower case, just in case ppl set their config vars inconsistently. (maybe related to mantis #5386)

This commit is contained in:
Diva Canto
2011-03-01 09:20:50 -08:00
parent cea47491de
commit b82b0b1677

View File

@@ -253,7 +253,7 @@ namespace OpenSim.Services.HypergridService
TravelingAgentInfo travel = m_TravelingAgents[sessionID];
return travel.GridExternalName == thisGridExternalName;
return travel.GridExternalName.ToLower() == thisGridExternalName.ToLower();
}
public bool VerifyClient(UUID sessionID, string reportedIP)