aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/UserAccounts
diff options
context:
space:
mode:
authorMelanie2010-01-03 03:24:06 +0000
committerMelanie2010-01-03 03:24:06 +0000
commit489a4752a51819e03ed90f4bb4d3499f4d8af9cf (patch)
tree6570bfa09e72d089072ee7cdb9b8afaa3963bfe7 /OpenSim/Services/Connectors/UserAccounts
parentTest client for remote presence connector, and for the service itself. Connec... (diff)
downloadopensim-SC_OLD-489a4752a51819e03ed90f4bb4d3499f4d8af9cf.zip
opensim-SC_OLD-489a4752a51819e03ed90f4bb4d3499f4d8af9cf.tar.gz
opensim-SC_OLD-489a4752a51819e03ed90f4bb4d3499f4d8af9cf.tar.bz2
opensim-SC_OLD-489a4752a51819e03ed90f4bb4d3499f4d8af9cf.tar.xz
Change the requester a little
Diffstat (limited to 'OpenSim/Services/Connectors/UserAccounts')
-rw-r--r--OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs
index 46313d9..076993e 100644
--- a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs
+++ b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs
@@ -194,7 +194,10 @@ namespace OpenSim.Services.Connectors
194 sendData["VERSIONMAX"] = ProtocolVersions.ClientProtocolVersionMax.ToString(); 194 sendData["VERSIONMAX"] = ProtocolVersions.ClientProtocolVersionMax.ToString();
195 sendData["METHOD"] = "setaccount"; 195 sendData["METHOD"] = "setaccount";
196 196
197 sendData["account"] = data.ToKeyValuePairs(); 197 Dictionary<string, object> structData = data.ToKeyValuePairs();
198
199 foreach (KeyValuePair<string,object> kvp in structData)
200 sendData[kvp.Key] = kvp.Value.ToString();
198 201
199 return SendAndGetBoolReply(sendData); 202 return SendAndGetBoolReply(sendData);
200 } 203 }