From 90a39379f0976a00582e2096da4498395d71c109 Mon Sep 17 00:00:00 2001 From: Melanie Date: Mon, 8 Oct 2012 17:36:40 +0100 Subject: Allow other whitespace characters than spaces in Robust connection string --- OpenSim/Server/ServerMain.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Server/ServerMain.cs') diff --git a/OpenSim/Server/ServerMain.cs b/OpenSim/Server/ServerMain.cs index 21fb678..365a79a 100644 --- a/OpenSim/Server/ServerMain.cs +++ b/OpenSim/Server/ServerMain.cs @@ -60,7 +60,7 @@ namespace OpenSim.Server } string connList = serverConfig.GetString("ServiceConnectors", String.Empty); - string[] conns = connList.Split(new char[] {',', ' '}); + string[] conns = connList.Split(new char[] {',', ' ', '\n', '\r', '\t'}); // int i = 0; foreach (string c in conns) @@ -130,4 +130,4 @@ namespace OpenSim.Server return 0; } } -} \ No newline at end of file +} -- cgit v1.1