diff options
author | Sean Dague | 2008-12-17 21:59:20 +0000 |
---|---|---|
committer | Sean Dague | 2008-12-17 21:59:20 +0000 |
commit | ba6b3ade3b097023e6c0ffbd42fdefb3faebb7d7 (patch) | |
tree | 67eec37fb7786381b25077a42614b6b48ec1e5cf /OpenSim/Grid/GridServer | |
parent | remove an unused Match line in prebuild that is causing issues for (diff) | |
download | opensim-SC_OLD-ba6b3ade3b097023e6c0ffbd42fdefb3faebb7d7.zip opensim-SC_OLD-ba6b3ade3b097023e6c0ffbd42fdefb3faebb7d7.tar.gz opensim-SC_OLD-ba6b3ade3b097023e6c0ffbd42fdefb3faebb7d7.tar.bz2 opensim-SC_OLD-ba6b3ade3b097023e6c0ffbd42fdefb3faebb7d7.tar.xz |
fix a bug with the Grid REST interface that was returning the classname
in the UUID field instead of the actual UUID because of an implicit use
of ToString()
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/GridServer/GridManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs index 1ec4fd8..daee729 100644 --- a/OpenSim/Grid/GridServer/GridManager.cs +++ b/OpenSim/Grid/GridServer/GridManager.cs | |||
@@ -1039,7 +1039,7 @@ namespace OpenSim.Grid.GridServer | |||
1039 | respstring = "<Root>"; | 1039 | respstring = "<Root>"; |
1040 | respstring += "<authkey>" + TheSim.regionSendKey + "</authkey>"; | 1040 | respstring += "<authkey>" + TheSim.regionSendKey + "</authkey>"; |
1041 | respstring += "<sim>"; | 1041 | respstring += "<sim>"; |
1042 | respstring += "<uuid>" + TheSim.ToString() + "</uuid>"; | 1042 | respstring += "<uuid>" + TheSim.UUID.ToString() + "</uuid>"; |
1043 | respstring += "<regionname>" + TheSim.regionName + "</regionname>"; | 1043 | respstring += "<regionname>" + TheSim.regionName + "</regionname>"; |
1044 | respstring += "<sim_ip>" + TheSim.serverIP + "</sim_ip>"; | 1044 | respstring += "<sim_ip>" + TheSim.serverIP + "</sim_ip>"; |
1045 | respstring += "<sim_port>" + TheSim.serverPort.ToString() + "</sim_port>"; | 1045 | respstring += "<sim_port>" + TheSim.serverPort.ToString() + "</sim_port>"; |