aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorlbsa712008-01-11 15:19:43 +0000
committerlbsa712008-01-11 15:19:43 +0000
commitcdd378a2c221b36260dce4437b150a77af3e736f (patch)
tree1c319202664ea3b123ed0059a769d5b65e3619da
parentTurn off accidental hardcoding (diff)
downloadopensim-SC_OLD-cdd378a2c221b36260dce4437b150a77af3e736f.zip
opensim-SC_OLD-cdd378a2c221b36260dce4437b150a77af3e736f.tar.gz
opensim-SC_OLD-cdd378a2c221b36260dce4437b150a77af3e736f.tar.bz2
opensim-SC_OLD-cdd378a2c221b36260dce4437b150a77af3e736f.tar.xz
* returnin LLUUID.Zero rather than LLUUID.Random on webkey null
-rw-r--r--OpenSim/Framework/Data.MySQL/MySQLManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Data.MySQL/MySQLManager.cs b/OpenSim/Framework/Data.MySQL/MySQLManager.cs
index 1032145..7645df3 100644
--- a/OpenSim/Framework/Data.MySQL/MySQLManager.cs
+++ b/OpenSim/Framework/Data.MySQL/MySQLManager.cs
@@ -449,7 +449,7 @@ namespace OpenSim.Framework.Data.MySQL
449 449
450 if( reader.IsDBNull( reader.GetOrdinal( "webLoginKey" ) ) ) 450 if( reader.IsDBNull( reader.GetOrdinal( "webLoginKey" ) ) )
451 { 451 {
452 retval.webLoginKey = LLUUID.Random(); 452 retval.webLoginKey = LLUUID.Zero;
453 } 453 }
454 else 454 else
455 { 455 {