diff options
author | Melanie | 2010-01-03 03:24:06 +0000 |
---|---|---|
committer | Melanie | 2010-01-03 03:24:06 +0000 |
commit | 489a4752a51819e03ed90f4bb4d3499f4d8af9cf (patch) | |
tree | 6570bfa09e72d089072ee7cdb9b8afaa3963bfe7 /OpenSim/Services/Connectors/UserAccounts | |
parent | Test client for remote presence connector, and for the service itself. Connec... (diff) | |
download | opensim-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.cs | 5 |
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 | } |