From 3b0eb958a84c17f434d8cae1ec43e4819f0b1bd1 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Sun, 4 Jan 2009 19:41:55 +0000 Subject: * Another minor GenericMessage fix - If we assume the method names are case-insensitive, we should process them as such. --- OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Region') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 55b77d4..38450ed 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs @@ -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) { -- cgit v1.1