aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs
index acc362b..9484a5a 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs
@@ -158,7 +158,16 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Authentication
158 return m_AuthenticationService.SetPassword(principalID, passwd); 158 return m_AuthenticationService.SetPassword(principalID, passwd);
159 } 159 }
160 160
161 #endregion 161 public AuthInfo GetAuthInfo(UUID principalID)
162 {
163 return m_AuthenticationService.GetAuthInfo(principalID);
164 }
162 165
166 public bool SetAuthInfo(AuthInfo info)
167 {
168 return m_AuthenticationService.SetAuthInfo(info);
169 }
170
171 #endregion
163 } 172 }
164} 173}