diff options
author | Teravus Ovares | 2008-12-27 22:09:32 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-12-27 22:09:32 +0000 |
commit | e63c768973dac736135a1aff828f3ac97e8827cd (patch) | |
tree | 263a01afa5c3e21b5d8d2926b8e7a4809531311a | |
parent | made a copy (diff) | |
download | opensim-SC_OLD-e63c768973dac736135a1aff828f3ac97e8827cd.zip opensim-SC_OLD-e63c768973dac736135a1aff828f3ac97e8827cd.tar.gz opensim-SC_OLD-e63c768973dac736135a1aff828f3ac97e8827cd.tar.bz2 opensim-SC_OLD-e63c768973dac736135a1aff828f3ac97e8827cd.tar.xz |
* Back porting the LLSD Login Service Method fix to stable.0.6.1-release
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index 24e9ca9..3f53c2f 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs | |||
@@ -379,7 +379,11 @@ namespace OpenSim.Framework.Communications | |||
379 | return logResponse.CreateLoginFailedResponseLLSD(); | 379 | return logResponse.CreateLoginFailedResponseLLSD(); |
380 | } | 380 | } |
381 | } | 381 | } |
382 | else | ||
383 | return logResponse.CreateLoginFailedResponseLLSD(); | ||
382 | } | 384 | } |
385 | else | ||
386 | return logResponse.CreateLoginFailedResponseLLSD(); | ||
383 | 387 | ||
384 | 388 | ||
385 | if (userProfile.GodLevel < m_minLoginLevel) | 389 | if (userProfile.GodLevel < m_minLoginLevel) |