aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/ServerMain.cs
diff options
context:
space:
mode:
authorDiva Canto2009-09-28 18:53:07 -0700
committerDiva Canto2009-09-28 18:53:07 -0700
commitf4e8ac35560c9c57a4ce64a7b3ee4343086cd128 (patch)
treee37825fe9cb1e6be40f83ce68507f7095a8ffedf /OpenSim/Server/ServerMain.cs
parentI think I have fixed something that was broken in the scene setup (tests) and... (diff)
downloadopensim-SC_OLD-f4e8ac35560c9c57a4ce64a7b3ee4343086cd128.zip
opensim-SC_OLD-f4e8ac35560c9c57a4ce64a7b3ee4343086cd128.tar.gz
opensim-SC_OLD-f4e8ac35560c9c57a4ce64a7b3ee4343086cd128.tar.bz2
opensim-SC_OLD-f4e8ac35560c9c57a4ce64a7b3ee4343086cd128.tar.xz
Fixed a bug that was causing exceptions to the thrown in ROBUST MainServer.
Diffstat (limited to '')
-rw-r--r--OpenSim/Server/ServerMain.cs12
1 files changed, 8 insertions, 4 deletions
diff --git a/OpenSim/Server/ServerMain.cs b/OpenSim/Server/ServerMain.cs
index 8851894..01f2649 100644
--- a/OpenSim/Server/ServerMain.cs
+++ b/OpenSim/Server/ServerMain.cs
@@ -61,6 +61,7 @@ namespace OpenSim.Server
61 string connList = serverConfig.GetString("ServiceConnectors", String.Empty); 61 string connList = serverConfig.GetString("ServiceConnectors", String.Empty);
62 string[] conns = connList.Split(new char[] {',', ' '}); 62 string[] conns = connList.Split(new char[] {',', ' '});
63 63
64 int i = 0;
64 foreach (string c in conns) 65 foreach (string c in conns)
65 { 66 {
66 if (c == String.Empty) 67 if (c == String.Empty)
@@ -100,11 +101,14 @@ namespace OpenSim.Server
100 IServiceConnector connector = null; 101 IServiceConnector connector = null;
101 try 102 try
102 { 103 {
103 Object[] modargs = new Object[] { m_Server.Config, server, 104 Object[] modargs = null;
105 if (configName != string.Empty)
106 {
107 modargs = new Object[] { m_Server.Config, server,
104 configName }; 108 configName };
105 connector = ServerUtils.LoadPlugin<IServiceConnector>(conn, 109 connector = ServerUtils.LoadPlugin<IServiceConnector>(conn,
106 modargs); 110 modargs);
107 111 }
108 if (connector == null) 112 if (connector == null)
109 { 113 {
110 modargs = new Object[] { m_Server.Config, server }; 114 modargs = new Object[] { m_Server.Config, server };