diff options
author | onefang | 2019-08-02 21:20:11 +1000 |
---|---|---|
committer | onefang | 2019-08-02 21:20:11 +1000 |
commit | 85fcb4e75c94ff7b5b45609826df5113f32aacc0 (patch) | |
tree | b34fa5ce80e228850c1548b9ba210e6836558c2e /OpenSim/Server | |
parent | Bump sim ports up by 2 when creating, coz 5 is silly. (diff) | |
download | opensim-SC-85fcb4e75c94ff7b5b45609826df5113f32aacc0.zip opensim-SC-85fcb4e75c94ff7b5b45609826df5113f32aacc0.tar.gz opensim-SC-85fcb4e75c94ff7b5b45609826df5113f32aacc0.tar.bz2 opensim-SC-85fcb4e75c94ff7b5b45609826df5113f32aacc0.tar.xz |
Another attempt at sorting out the auto group chicken and egg problems.
Are you a local? Asking for a friend.
Diffstat (limited to 'OpenSim/Server')
-rw-r--r-- | OpenSim/Server/Handlers/Authorization/AuthorizationServerPostHandler.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Authorization/AuthorizationServerPostHandler.cs b/OpenSim/Server/Handlers/Authorization/AuthorizationServerPostHandler.cs index 310a542..07e09bc 100644 --- a/OpenSim/Server/Handlers/Authorization/AuthorizationServerPostHandler.cs +++ b/OpenSim/Server/Handlers/Authorization/AuthorizationServerPostHandler.cs | |||
@@ -61,7 +61,8 @@ namespace OpenSim.Server.Handlers.Authorization | |||
61 | AuthorizationRequest Authorization = (AuthorizationRequest) xs.Deserialize(request); | 61 | AuthorizationRequest Authorization = (AuthorizationRequest) xs.Deserialize(request); |
62 | 62 | ||
63 | string message = String.Empty; | 63 | string message = String.Empty; |
64 | bool authorized = m_AuthorizationService.IsAuthorizedForRegion(Authorization.ID, Authorization.FirstName, Authorization.SurName, Authorization.RegionID, out message); | 64 | bool isLocal = false; |
65 | bool authorized = m_AuthorizationService.IsAuthorizedForRegion(Authorization.ID, Authorization.FirstName, Authorization.SurName, Authorization.RegionID, out message, out isLocal); | ||
65 | 66 | ||
66 | AuthorizationResponse result = new AuthorizationResponse(authorized, Authorization.ID + " has been authorized"); | 67 | AuthorizationResponse result = new AuthorizationResponse(authorized, Authorization.ID + " has been authorized"); |
67 | 68 | ||