aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseOpenSimServer.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-29 19:57:30 +0000
committerJustin Clarke Casey2008-10-29 19:57:30 +0000
commitf8c2efbe70d3cef23c6c519397857e1bc5d960fc (patch)
tree9c7cd7549906fde44b610c381a6bd08d0ae995d3 /OpenSim/Framework/Servers/BaseOpenSimServer.cs
parent* Stop the DataSnapShot module trying to call home on shutdown even if it isn... (diff)
downloadopensim-SC_OLD-f8c2efbe70d3cef23c6c519397857e1bc5d960fc.zip
opensim-SC_OLD-f8c2efbe70d3cef23c6c519397857e1bc5d960fc.tar.gz
opensim-SC_OLD-f8c2efbe70d3cef23c6c519397857e1bc5d960fc.tar.bz2
opensim-SC_OLD-f8c2efbe70d3cef23c6c519397857e1bc5d960fc.tar.xz
* Instead of putting 0.5.11.00000 if there is no revision, just put 0.5.11 instead
* This is to make things less confusing to users (and maybe a little easier to do future version filtering for grid connections) * If there's disagreement about this, then please say so (preferably in the opensim-dev mailing list)
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/BaseOpenSimServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
index 315ff3c..36f8d2e 100644
--- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs
+++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
@@ -427,7 +427,7 @@ namespace OpenSim.Framework.Servers
427 EntriesFile.Close(); 427 EntriesFile.Close();
428 } 428 }
429 429
430 m_version += string.IsNullOrEmpty(buildVersion)? ".00000" : ("." + buildVersion + " ").Substring(0, 6); 430 m_version += string.IsNullOrEmpty(buildVersion) ? " " : ("." + buildVersion + " ").Substring(0, 6);
431 431
432 // Add operating system information if available 432 // Add operating system information if available
433 string OSString = ""; 433 string OSString = "";