diff options
author | lbsa71 | 2008-01-11 15:19:43 +0000 |
---|---|---|
committer | lbsa71 | 2008-01-11 15:19:43 +0000 |
commit | cdd378a2c221b36260dce4437b150a77af3e736f (patch) | |
tree | 1c319202664ea3b123ed0059a769d5b65e3619da /OpenSim/Framework | |
parent | Turn off accidental hardcoding (diff) | |
download | opensim-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
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/MySQLManager.cs | 2 |
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 | { |