aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMelanie2012-07-01 18:05:35 +0200
committerMelanie2012-07-01 18:05:35 +0200
commit7eb95c9ed90939fc243995eaaefed90bf45c37ed (patch)
treef4b7ca4f29627b24e5ccc3176f8f3b26419381a3 /OpenSim
parentRemove spammy debug (diff)
downloadopensim-SC_OLD-7eb95c9ed90939fc243995eaaefed90bf45c37ed.zip
opensim-SC_OLD-7eb95c9ed90939fc243995eaaefed90bf45c37ed.tar.gz
opensim-SC_OLD-7eb95c9ed90939fc243995eaaefed90bf45c37ed.tar.bz2
opensim-SC_OLD-7eb95c9ed90939fc243995eaaefed90bf45c37ed.tar.xz
Bring casing of llSHA1String in line with SL
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 8c51473..dd7563a 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -7479,7 +7479,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
7479 public LSL_String llSHA1String(string src) 7479 public LSL_String llSHA1String(string src)
7480 { 7480 {
7481 m_host.AddScriptLPS(1); 7481 m_host.AddScriptLPS(1);
7482 return Util.SHA1Hash(src, Encoding.UTF8).ToLower(); 7482 return Util.SHA1Hash(src, Encoding.UTF8).ToUpper();
7483 } 7483 }
7484 7484
7485 protected ObjectShapePacket.ObjectDataBlock SetPrimitiveBlockShapeParams(SceneObjectPart part, int holeshape, LSL_Vector cut, float hollow, LSL_Vector twist, byte profileshape, byte pathcurve) 7485 protected ObjectShapePacket.ObjectDataBlock SetPrimitiveBlockShapeParams(SceneObjectPart part, int holeshape, LSL_Vector cut, float hollow, LSL_Vector twist, byte profileshape, byte pathcurve)