aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Null
diff options
context:
space:
mode:
authorBlueWall2012-12-09 15:08:32 -0500
committerBlueWall2012-12-09 15:08:32 -0500
commit8efae93b51082e0af9048306ffa8ca82586969af (patch)
treed320388f5a202374a2c8a9eb43b32b290e4ad920 /OpenSim/Data/Null
parentMerge branch 'master' of /home/opensim/var/repo/opensim (diff)
downloadopensim-SC_OLD-8efae93b51082e0af9048306ffa8ca82586969af.zip
opensim-SC_OLD-8efae93b51082e0af9048306ffa8ca82586969af.tar.gz
opensim-SC_OLD-8efae93b51082e0af9048306ffa8ca82586969af.tar.bz2
opensim-SC_OLD-8efae93b51082e0af9048306ffa8ca82586969af.tar.xz
Restrict IPresenceData.VerifyAgent
Restrict IPresenceData.VerifyAgent to only return bool result
Diffstat (limited to 'OpenSim/Data/Null')
-rw-r--r--OpenSim/Data/Null/NullPresenceData.cs11
1 files changed, 3 insertions, 8 deletions
diff --git a/OpenSim/Data/Null/NullPresenceData.cs b/OpenSim/Data/Null/NullPresenceData.cs
index eafde95..b85b95e 100644
--- a/OpenSim/Data/Null/NullPresenceData.cs
+++ b/OpenSim/Data/Null/NullPresenceData.cs
@@ -222,17 +222,12 @@ namespace OpenSim.Data.Null
222 return true; 222 return true;
223 } 223 }
224 224
225 public PresenceData VerifyAgent(UUID secureSessionID) 225 public bool VerifyAgent(UUID agentId, UUID secureSessionID)
226 { 226 {
227 if (Instance != this) 227 if (Instance != this)
228 return Instance.VerifyAgent(secureSessionID); 228 return Instance.VerifyAgent(agentId, secureSessionID);
229 229
230 if (m_presenceData.ContainsKey(secureSessionID)) 230 return false;
231 {
232 return m_presenceData[secureSessionID];
233 }
234
235 return null;
236 } 231 }
237 232
238 } 233 }