aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-03-26 02:42:50 +0000
committerJustin Clark-Casey (justincc)2011-03-26 02:42:50 +0000
commitde0730a54ca8b2ede0727212bfc2474c0eff979f (patch)
treeb24dfb687929f1c3ccdac6c81b55b2723bf1c91c /OpenSim/Services
parentRemoving hard-coded plugin loading in favour of direct class instantiation (diff)
downloadopensim-SC_OLD-de0730a54ca8b2ede0727212bfc2474c0eff979f.zip
opensim-SC_OLD-de0730a54ca8b2ede0727212bfc2474c0eff979f.tar.gz
opensim-SC_OLD-de0730a54ca8b2ede0727212bfc2474c0eff979f.tar.bz2
opensim-SC_OLD-de0730a54ca8b2ede0727212bfc2474c0eff979f.tar.xz
Add OpenSim.Server.Base reference in prebuild.xml. Initialize svc_checks dictionary in WebkeyOrPasswordAuthenticationService, which was what was causing the load failure.
Diffstat (limited to 'OpenSim/Services')
-rw-r--r--OpenSim/Services/AuthenticationService/WebkeyOrPasswordAuthenticationService.cs5
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 {