aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/AuthorizationService/AuthorizationService.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2009-09-16 18:21:46 +0100
committerJustin Clark-Casey (justincc)2009-09-16 18:21:46 +0100
commita4c093469ae953971493977facbc81c49761577d (patch)
tree004f10f20c7e4d38088bf1eea8b5d2dd61a126df /OpenSim/Services/AuthorizationService/AuthorizationService.cs
parenton iar save/load, let the user know if they put in the wrong password (diff)
parentupdated the IAuthorizationService interface so that a message is passed back ... (diff)
downloadopensim-SC-a4c093469ae953971493977facbc81c49761577d.zip
opensim-SC-a4c093469ae953971493977facbc81c49761577d.tar.gz
opensim-SC-a4c093469ae953971493977facbc81c49761577d.tar.bz2
opensim-SC-a4c093469ae953971493977facbc81c49761577d.tar.xz
Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Services/AuthorizationService/AuthorizationService.cs')
-rw-r--r--OpenSim/Services/AuthorizationService/AuthorizationService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Services/AuthorizationService/AuthorizationService.cs b/OpenSim/Services/AuthorizationService/AuthorizationService.cs
index c795ba0..d658368 100644
--- a/OpenSim/Services/AuthorizationService/AuthorizationService.cs
+++ b/OpenSim/Services/AuthorizationService/AuthorizationService.cs
@@ -48,8 +48,9 @@ namespace OpenSim.Services.AuthorizationService
48 m_log.Info("[AUTHORIZATION CONNECTOR]: Local Authorization service enabled"); 48 m_log.Info("[AUTHORIZATION CONNECTOR]: Local Authorization service enabled");
49 } 49 }
50 50
51 public bool IsAuthorizedForRegion(string userID, string regionID) 51 public bool IsAuthorizedForRegion(string userID, string regionID, out string message)
52 { 52 {
53 message = "Authorized";
53 return true; 54 return true;
54 } 55 }
55 } 56 }