aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r--OpenSim/Framework/Communications/Clients/AuthClient.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Clients/AuthClient.cs b/OpenSim/Framework/Communications/Clients/AuthClient.cs
index 6111aee..49ec7ba 100644
--- a/OpenSim/Framework/Communications/Clients/AuthClient.cs
+++ b/OpenSim/Framework/Communications/Clients/AuthClient.cs
@@ -129,12 +129,12 @@ namespace OpenSim.Framework.Communications.Clients
129 Hashtable responseData = (Hashtable)UserResp.Value; 129 Hashtable responseData = (Hashtable)UserResp.Value;
130 if (responseData.ContainsKey("auth_session") && responseData["auth_session"].ToString() == "TRUE") 130 if (responseData.ContainsKey("auth_session") && responseData["auth_session"].ToString() == "TRUE")
131 { 131 {
132 System.Console.WriteLine("[Authorization]: userserver reported authorized session for user " + userID); 132 //System.Console.WriteLine("[Authorization]: userserver reported authorized session for user " + userID);
133 return true; 133 return true;
134 } 134 }
135 else 135 else
136 { 136 {
137 System.Console.WriteLine("[Authorization]: userserver reported unauthorized session for user " + userID); 137 //System.Console.WriteLine("[Authorization]: userserver reported unauthorized session for user " + userID);
138 return false; 138 return false;
139 } 139 }
140 } 140 }