From eb6d49e02ca89aa8a834fc964881e30eb17251a4 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 10 Jan 2010 17:19:40 -0800 Subject: [PATCH] Fixed small inconsistency in config var name. --- .../Authentication/AuthenticationServerConnector.cs | 2 +- bin/OpenSim.Server.ini.example | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs b/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs index 2abef0a1c4..adb1e5b480 100644 --- a/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs +++ b/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs @@ -49,7 +49,7 @@ namespace OpenSim.Server.Handlers.Authentication if (serverConfig == null) throw new Exception(String.Format("No section '{0}' in config file", m_ConfigName)); - string authenticationService = serverConfig.GetString("AuthenticationServiceModule", + string authenticationService = serverConfig.GetString("LocalServiceModule", String.Empty); if (authenticationService == String.Empty) diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example index c76ac4dcb0..1b5aef2177 100644 --- a/bin/OpenSim.Server.ini.example +++ b/bin/OpenSim.Server.ini.example @@ -67,7 +67,7 @@ ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.S ; * [AuthenticationService] ; for the server connector - AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" + LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" ; for the service StorageProvider = "OpenSim.Data.MySQL.dll" ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;" @@ -90,7 +90,9 @@ ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.S ; Realm = "useraccounts" [PresenceService] + ; for the server connector LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" + ; for the service StorageProvider = "OpenSim.Data.MySQL.dll" ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;" @@ -99,7 +101,9 @@ ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.S DefaultLibrary = "./inventory/Libraries.xml" [LoginService] + ; for the server connector LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" + ; for the service UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"