aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
diff options
context:
space:
mode:
authorMelanie2009-12-14 00:40:56 +0000
committerMelanie2009-12-14 00:40:56 +0000
commit824d7190c2a5520f1cf6f3d24585b8c47c841e55 (patch)
tree0814d0228121249b7f2a33658180a0a446d13f51 /OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
parentAnd reverse (diff)
parentMerge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff)
downloadopensim-SC-824d7190c2a5520f1cf6f3d24585b8c47c841e55.zip
opensim-SC-824d7190c2a5520f1cf6f3d24585b8c47c841e55.tar.gz
opensim-SC-824d7190c2a5520f1cf6f3d24585b8c47c841e55.tar.bz2
opensim-SC-824d7190c2a5520f1cf6f3d24585b8c47c841e55.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index 85961b9..4d9f58f 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -964,7 +964,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
964 } 964 }
965 965
966 if (packetInbox.Dequeue(100, ref incomingPacket)) 966 if (packetInbox.Dequeue(100, ref incomingPacket))
967 Util.FireAndForget(ProcessInPacket, incomingPacket); 967 ProcessInPacket(incomingPacket);//, incomingPacket); Util.FireAndForget(ProcessInPacket, incomingPacket);
968 } 968 }
969 catch (Exception ex) 969 catch (Exception ex)
970 { 970 {