diff options
author | Melanie | 2012-10-08 17:36:40 +0100 |
---|---|---|
committer | Melanie | 2012-10-08 17:36:40 +0100 |
commit | 90a39379f0976a00582e2096da4498395d71c109 (patch) | |
tree | 64601964f5e001c7071c5ffbaa08a7056abb72e4 /OpenSim/Server/ServerMain.cs | |
parent | refactor: Rename UserSessioNID -> UserSession in WebStatsModule since this is... (diff) | |
download | opensim-SC_OLD-90a39379f0976a00582e2096da4498395d71c109.zip opensim-SC_OLD-90a39379f0976a00582e2096da4498395d71c109.tar.gz opensim-SC_OLD-90a39379f0976a00582e2096da4498395d71c109.tar.bz2 opensim-SC_OLD-90a39379f0976a00582e2096da4498395d71c109.tar.xz |
Allow other whitespace characters than spaces in Robust connection string
Diffstat (limited to 'OpenSim/Server/ServerMain.cs')
-rw-r--r-- | OpenSim/Server/ServerMain.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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 | |||
60 | } | 60 | } |
61 | 61 | ||
62 | string connList = serverConfig.GetString("ServiceConnectors", String.Empty); | 62 | string connList = serverConfig.GetString("ServiceConnectors", String.Empty); |
63 | string[] conns = connList.Split(new char[] {',', ' '}); | 63 | string[] conns = connList.Split(new char[] {',', ' ', '\n', '\r', '\t'}); |
64 | 64 | ||
65 | // int i = 0; | 65 | // int i = 0; |
66 | foreach (string c in conns) | 66 | foreach (string c in conns) |
@@ -130,4 +130,4 @@ namespace OpenSim.Server | |||
130 | return 0; | 130 | return 0; |
131 | } | 131 | } |
132 | } | 132 | } |
133 | } \ No newline at end of file | 133 | } |