aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/VersionInfo.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-09-10 21:50:40 +0100
committerJustin Clark-Casey (justincc)2010-09-10 21:56:04 +0100
commita7f4e10f425cef4b85810486ba31c59b3ba206fc (patch)
tree98c58d9804f0b6c47912b1aed8240ec464be13d8 /OpenSim/Framework/Servers/VersionInfo.cs
parentSecond pass at cleaning up thread safety in EntityManager and SceneGraph (diff)
downloadopensim-SC_OLD-a7f4e10f425cef4b85810486ba31c59b3ba206fc.zip
opensim-SC_OLD-a7f4e10f425cef4b85810486ba31c59b3ba206fc.tar.gz
opensim-SC_OLD-a7f4e10f425cef4b85810486ba31c59b3ba206fc.tar.bz2
opensim-SC_OLD-a7f4e10f425cef4b85810486ba31c59b3ba206fc.tar.xz
Remove parenthesis around the release flavour to get the version string back under 27 chars
Can't quite remember why this has to be <=27 chars, maybe something to do with the space available for the version string in a typical client
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/VersionInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/VersionInfo.cs b/OpenSim/Framework/Servers/VersionInfo.cs
index 100bf1f..c88e0d1 100644
--- a/OpenSim/Framework/Servers/VersionInfo.cs
+++ b/OpenSim/Framework/Servers/VersionInfo.cs
@@ -49,7 +49,7 @@ namespace OpenSim
49 49
50 public static string GetVersionString(string versionNumber, Flavour flavour) 50 public static string GetVersionString(string versionNumber, Flavour flavour)
51 { 51 {
52 string versionString = "OpenSim " + versionNumber + " (" + flavour + ")"; 52 string versionString = "OpenSim " + versionNumber + " " + flavour;
53 return versionString.PadRight(VERSIONINFO_VERSION_LENGTH); 53 return versionString.PadRight(VERSIONINFO_VERSION_LENGTH);
54 } 54 }
55 55