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

dsg
Diva Canto 2011-03-01 09:20:50 -08:00
parent cea47491de
commit b82b0b1677
1 changed files with 1 additions and 1 deletions

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)