aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Client')
-rw-r--r--OpenSim/Client/Linden/LLProxyLoginModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Client/Linden/LLProxyLoginModule.cs b/OpenSim/Client/Linden/LLProxyLoginModule.cs
index f9cb3a9..2da774f 100644
--- a/OpenSim/Client/Linden/LLProxyLoginModule.cs
+++ b/OpenSim/Client/Linden/LLProxyLoginModule.cs
@@ -76,10 +76,10 @@ namespace OpenSim.Client.Linden
76 76
77 public void Initialise(IConfigSource source) 77 public void Initialise(IConfigSource source)
78 { 78 {
79 IConfig startupConfig = source.Configs["Startup"]; 79 IConfig startupConfig = source.Configs["Modules"];
80 if (startupConfig != null) 80 if (startupConfig != null)
81 { 81 {
82 m_enabled = startupConfig.GetBoolean("gridmode", false); 82 m_enabled = startupConfig.GetBoolean("LLProxyLoginModule", false);
83 } 83 }
84 } 84 }
85 85