* Another minor GenericMessage fix - If we assume the method names are case-insensitive, we should process them as such.

This commit is contained in:
Adam Frisby
2009-01-04 19:41:55 +00:00
parent 00a0f4a286
commit 3b0eb958a8

View File

@@ -642,6 +642,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
public bool AddGenericPacketHandler(string MethodName, GenericMessage handler)
{
MethodName = MethodName.ToLower().Trim();
bool result = false;
lock (m_genericPacketHandlers)
{