diff options
author | Teravus Ovares | 2008-09-26 17:25:22 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-09-26 17:25:22 +0000 |
commit | 16b6738cdadc70966a93b6d025ae469738955dcb (patch) | |
tree | 7a3c0075e9ee5fd04d972bc52be38aec4d51f648 /OpenSim/Region/Environment/Modules/InterGrid | |
parent | DNE code cleanups (diff) | |
download | opensim-SC_OLD-16b6738cdadc70966a93b6d025ae469738955dcb.zip opensim-SC_OLD-16b6738cdadc70966a93b6d025ae469738955dcb.tar.gz opensim-SC_OLD-16b6738cdadc70966a93b6d025ae469738955dcb.tar.bz2 opensim-SC_OLD-16b6738cdadc70966a93b6d025ae469738955dcb.tar.xz |
* Patch from JHurliman
* Updates to libomv r2243,
* Remove lots of unnecessary typecasts
* Improves SendWindData()
Thanks jhurliman.
* Will update OpenSim-libs in 10 minutes..
Diffstat (limited to 'OpenSim/Region/Environment/Modules/InterGrid')
-rw-r--r-- | OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs b/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs index eeff62d..cb525cc 100644 --- a/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs +++ b/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs | |||
@@ -787,7 +787,7 @@ namespace OpenSim.Region.Environment.Modules.InterGrid | |||
787 | UUID userUUID = UUID.Zero; | 787 | UUID userUUID = UUID.Zero; |
788 | if (UUID.TryParse(uuidString, out userUUID)) | 788 | if (UUID.TryParse(uuidString, out userUUID)) |
789 | { | 789 | { |
790 | UUID RemoteID = uuidString; | 790 | UUID RemoteID = (UUID)uuidString; |
791 | UUID LocalID = RemoteID; | 791 | UUID LocalID = RemoteID; |
792 | // FIXME: TODO: Routine to map RemoteUUIDs to LocalUUIds | 792 | // FIXME: TODO: Routine to map RemoteUUIDs to LocalUUIds |
793 | // would be done already.. but the client connects with the Aditi UUID | 793 | // would be done already.. but the client connects with the Aditi UUID |