aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Util.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Util.cs')
-rw-r--r--OpenSim/Framework/Util.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs
index d6202ea..0a9b67d 100644
--- a/OpenSim/Framework/Util.cs
+++ b/OpenSim/Framework/Util.cs
@@ -1060,11 +1060,11 @@ namespace OpenSim.Framework
1060 1060
1061 public static Guid GetHashGuid(string data, string salt) 1061 public static Guid GetHashGuid(string data, string salt)
1062 { 1062 {
1063 byte[] hash = ComputeMD5Hash( data + salt ); 1063 byte[] hash = ComputeMD5Hash(data + salt);
1064 1064
1065 //string s = BitConverter.ToString(hash); 1065 //string s = BitConverter.ToString(hash);
1066 1066
1067 Guid guid = new Guid( hash ); 1067 Guid guid = new Guid(hash);
1068 1068
1069 return guid; 1069 return guid;
1070 } 1070 }