aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService
diff options
context:
space:
mode:
authorUbitUmarov2015-09-28 15:21:23 +0100
committerUbitUmarov2015-09-28 15:21:23 +0100
commitc4ef8984a3ac9a12a570a33cb85c19d4430ed272 (patch)
treec07318e01ea4b26d17ccc073d21609fa93b86cce /OpenSim/Services/LLLoginService
parent add missing handlers for preferences (diff)
downloadopensim-SC_OLD-c4ef8984a3ac9a12a570a33cb85c19d4430ed272.zip
opensim-SC_OLD-c4ef8984a3ac9a12a570a33cb85c19d4430ed272.tar.gz
opensim-SC_OLD-c4ef8984a3ac9a12a570a33cb85c19d4430ed272.tar.bz2
opensim-SC_OLD-c4ef8984a3ac9a12a570a33cb85c19d4430ed272.tar.xz
clear merge issue
Diffstat (limited to 'OpenSim/Services/LLLoginService')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index c1b45b2..847cc07 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -323,12 +323,6 @@ namespace OpenSim.Services.LLLoginService
323 return LLFailedLoginResponse.UserProblem; 323 return LLFailedLoginResponse.UserProblem;
324 } 324 }
325 325
326 if (account.UserLevel < 0)
327 {
328 m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: Unverified account");
329 return LLFailedLoginResponse.UnverifiedAccountProblem;
330 }
331
332 if (account.UserLevel < m_MinLoginLevel) 326 if (account.UserLevel < m_MinLoginLevel)
333 { 327 {
334 m_log.InfoFormat( 328 m_log.InfoFormat(
@@ -530,7 +524,7 @@ namespace OpenSim.Services.LLLoginService
530 LLLoginResponse response 524 LLLoginResponse response
531 = new LLLoginResponse( 525 = new LLLoginResponse(
532 account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService, 526 account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService,
533 where, startLocation, position, lookAt, gestures, m_WelcomeMessage, home, clientIP, 527 where, startLocation, position, lookAt, gestures, processedMessage, home, clientIP,
534 m_MapTileURL, m_ProfileURL, m_OpenIDURL, m_SearchURL, m_Currency, m_DSTZone, 528 m_MapTileURL, m_ProfileURL, m_OpenIDURL, m_SearchURL, m_Currency, m_DSTZone,
535 m_DestinationGuide, m_AvatarPicker, realID, m_ClassifiedFee,m_MaxAgentGroups); 529 m_DestinationGuide, m_AvatarPicker, realID, m_ClassifiedFee,m_MaxAgentGroups);
536 530