aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes
diff options
context:
space:
mode:
authorMelanie2012-06-12 03:09:52 +0100
committerMelanie2012-06-12 03:09:52 +0100
commitdfafb5ca1451a407eafa6fbdc0246d6bdb962531 (patch)
tree62a3ba18f0ea09be7ec0bcbc3afdc701f592c7e6 /OpenSim/Region/Framework/Scenes
parentMerge branch 'master' into careminster (diff)
parentRemove accidental timeout left in during earlier debugging. Has been in sinc... (diff)
downloadopensim-SC_OLD-dfafb5ca1451a407eafa6fbdc0246d6bdb962531.zip
opensim-SC_OLD-dfafb5ca1451a407eafa6fbdc0246d6bdb962531.tar.gz
opensim-SC_OLD-dfafb5ca1451a407eafa6fbdc0246d6bdb962531.tar.bz2
opensim-SC_OLD-dfafb5ca1451a407eafa6fbdc0246d6bdb962531.tar.xz
Merge branch 'master' into careminster
Conflicts: OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r--OpenSim/Region/Framework/Scenes/AsyncInventorySender.cs2
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs7
2 files changed, 4 insertions, 5 deletions
diff --git a/OpenSim/Region/Framework/Scenes/AsyncInventorySender.cs b/OpenSim/Region/Framework/Scenes/AsyncInventorySender.cs
index 9cb5674..d9d2e64 100644
--- a/OpenSim/Region/Framework/Scenes/AsyncInventorySender.cs
+++ b/OpenSim/Region/Framework/Scenes/AsyncInventorySender.cs
@@ -137,7 +137,7 @@ namespace OpenSim.Region.Framework.Scenes
137 } 137 }
138 } 138 }
139 139
140 if (fh.Client.IsLoggingOut) 140 if (!fh.Client.IsActive)
141 continue; 141 continue;
142 142
143// m_log.DebugFormat( 143// m_log.DebugFormat(
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 3095382..85bae9a 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3617,10 +3617,9 @@ namespace OpenSim.Region.Framework.Scenes
3617 // Or the same user is trying to be root twice here, won't work. 3617 // Or the same user is trying to be root twice here, won't work.
3618 // Kill it. 3618 // Kill it.
3619 m_log.DebugFormat( 3619 m_log.DebugFormat(
3620 "[SCENE]: Zombie scene presence detected for {0} in {1}", 3620 "[SCENE]: Zombie scene presence detected for {0} {1} in {2}",
3621 agent.AgentID, 3621 sp.Name, sp.UUID, RegionInfo.RegionName);
3622 RegionInfo.RegionName 3622
3623 );
3624 sp.ControllingClient.Close(); 3623 sp.ControllingClient.Close();
3625 sp = null; 3624 sp = null;
3626 } 3625 }