diff options
Diffstat (limited to 'OpenSim/Framework/Communications/Services/HGLoginAuthService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Services/HGLoginAuthService.cs | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs b/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs index cd4ca5c..72e2dfb 100644 --- a/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs +++ b/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs | |||
@@ -161,14 +161,6 @@ namespace OpenSim.Framework.Communications.Services | |||
161 | 161 | ||
162 | public XmlRpcResponse XmlRpcVerifyKeyMethod(XmlRpcRequest request) | 162 | public XmlRpcResponse XmlRpcVerifyKeyMethod(XmlRpcRequest request) |
163 | { | 163 | { |
164 | foreach (object o in request.Params) | ||
165 | { | ||
166 | if (o != null) | ||
167 | m_log.Debug(" >> Param " + o.ToString()); | ||
168 | else | ||
169 | m_log.Debug(" >> Null"); | ||
170 | } | ||
171 | |||
172 | bool success = false; | 164 | bool success = false; |
173 | 165 | ||
174 | if (request.Params.Count >= 2) | 166 | if (request.Params.Count >= 2) |
@@ -180,7 +172,7 @@ namespace OpenSim.Framework.Communications.Services | |||
180 | { | 172 | { |
181 | authKey = (string)request.Params[1]; | 173 | authKey = (string)request.Params[1]; |
182 | 174 | ||
183 | m_log.InfoFormat("[HGLOGIN] HGVerifyKey called with key ", authKey); | 175 | m_log.InfoFormat("[HGLOGIN] HGVerifyKey called with key {0}", authKey); |
184 | 176 | ||
185 | if (!(m_userManager is IAuthentication)) | 177 | if (!(m_userManager is IAuthentication)) |
186 | { | 178 | { |
@@ -193,8 +185,9 @@ namespace OpenSim.Framework.Communications.Services | |||
193 | } | 185 | } |
194 | } | 186 | } |
195 | 187 | ||
188 | m_log.DebugFormat("[HGLOGIN]: Response to VerifyKey is {0}", success); | ||
196 | XmlRpcResponse response = new XmlRpcResponse(); | 189 | XmlRpcResponse response = new XmlRpcResponse(); |
197 | response.Value = (string)success.ToString(); | 190 | response.Value = success; |
198 | return response; | 191 | return response; |
199 | } | 192 | } |
200 | 193 | ||