diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/AuthenticationService/WebkeyOrPasswordAuthenticationService.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Services/AuthenticationService/WebkeyOrPasswordAuthenticationService.cs b/OpenSim/Services/AuthenticationService/WebkeyOrPasswordAuthenticationService.cs index 15dc5be..bcfd03d 100644 --- a/OpenSim/Services/AuthenticationService/WebkeyOrPasswordAuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/WebkeyOrPasswordAuthenticationService.cs | |||
@@ -15,8 +15,11 @@ namespace OpenSim.Services.AuthenticationService | |||
15 | public class WebkeyOrPasswordAuthenticationService : AuthenticationServiceBase, IAuthenticationService | 15 | public class WebkeyOrPasswordAuthenticationService : AuthenticationServiceBase, IAuthenticationService |
16 | { | 16 | { |
17 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 17 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
18 | |||
18 | private IConfigSource config; | 19 | private IConfigSource config; |
19 | private Dictionary<string, IAuthenticationService> svc_checks; | 20 | private Dictionary<string, IAuthenticationService> svc_checks |
21 | = new Dictionary<string, IAuthenticationService>(); | ||
22 | |||
20 | public WebkeyOrPasswordAuthenticationService(IConfigSource config) | 23 | public WebkeyOrPasswordAuthenticationService(IConfigSource config) |
21 | : base(config) | 24 | : base(config) |
22 | { | 25 | { |