diff options
author | Diva Canto | 2010-01-29 09:12:22 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-29 09:12:22 -0800 |
commit | 0c81966c0a8f69474fb542d7b4df1780ef756519 (patch) | |
tree | 549973fd8c11ee8dd3eba939eb0605a28c6d2849 /OpenSim/Services/Connectors/Simulation | |
parent | Fixed broken dll name. (diff) | |
download | opensim-SC_OLD-0c81966c0a8f69474fb542d7b4df1780ef756519.zip opensim-SC_OLD-0c81966c0a8f69474fb542d7b4df1780ef756519.tar.gz opensim-SC_OLD-0c81966c0a8f69474fb542d7b4df1780ef756519.tar.bz2 opensim-SC_OLD-0c81966c0a8f69474fb542d7b4df1780ef756519.tar.xz |
Works for grid login.
Diffstat (limited to 'OpenSim/Services/Connectors/Simulation')
-rw-r--r-- | OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs index e2ab179..d3be1a8 100644 --- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | |||
@@ -105,6 +105,8 @@ namespace OpenSim.Services.Connectors.Simulation | |||
105 | 105 | ||
106 | // Fill it in | 106 | // Fill it in |
107 | OSDMap args = PackCreateAgentArguments(aCircuit, destination, flags); | 107 | OSDMap args = PackCreateAgentArguments(aCircuit, destination, flags); |
108 | if (args == null) | ||
109 | return false; | ||
108 | 110 | ||
109 | string strBuffer = ""; | 111 | string strBuffer = ""; |
110 | byte[] buffer = new byte[1]; | 112 | byte[] buffer = new byte[1]; |
@@ -210,6 +212,7 @@ namespace OpenSim.Services.Connectors.Simulation | |||
210 | catch (Exception e) | 212 | catch (Exception e) |
211 | { | 213 | { |
212 | m_log.Debug("[REMOTE SIMULATION CONNECTOR]: PackAgentCircuitData failed with exception: " + e.Message); | 214 | m_log.Debug("[REMOTE SIMULATION CONNECTOR]: PackAgentCircuitData failed with exception: " + e.Message); |
215 | return null; | ||
213 | } | 216 | } |
214 | // Add the input arguments | 217 | // Add the input arguments |
215 | args["destination_x"] = OSD.FromString(destination.RegionLocX.ToString()); | 218 | args["destination_x"] = OSD.FromString(destination.RegionLocX.ToString()); |