aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications
diff options
context:
space:
mode:
authordiva2009-04-18 15:45:05 +0000
committerdiva2009-04-18 15:45:05 +0000
commitb824e488ba4e43d3e76ff8831ad514607db03928 (patch)
treee9ca8031d7f7e03f1d220132dc6b122c8032a54d /OpenSim/Framework/Communications
parentObtain the owner name for the X-SecondLife-Owner-Name header in llHTTPRequest... (diff)
downloadopensim-SC_OLD-b824e488ba4e43d3e76ff8831ad514607db03928.zip
opensim-SC_OLD-b824e488ba4e43d3e76ff8831ad514607db03928.tar.gz
opensim-SC_OLD-b824e488ba4e43d3e76ff8831ad514607db03928.tar.bz2
opensim-SC_OLD-b824e488ba4e43d3e76ff8831ad514607db03928.tar.xz
Addresses mantis #3485.
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 }