aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2018-07-06 01:57:59 +0100
committerUbitUmarov2018-07-06 01:57:59 +0100
commit834a0e8b6dac78259f3248a7126fa390cbcbf872 (patch)
tree35d7d6dd3085db4060c7b1de9175a497d90f01f8
parentlet OpenSim.ini.example be closer to functional standalone ini (diff)
downloadopensim-SC-834a0e8b6dac78259f3248a7126fa390cbcbf872.zip
opensim-SC-834a0e8b6dac78259f3248a7126fa390cbcbf872.tar.gz
opensim-SC-834a0e8b6dac78259f3248a7126fa390cbcbf872.tar.bz2
opensim-SC-834a0e8b6dac78259f3248a7126fa390cbcbf872.tar.xz
fix version string size test
-rw-r--r--OpenSim/Framework/VersionInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/VersionInfo.cs b/OpenSim/Framework/VersionInfo.cs
index eac5aae..e8e746b 100644
--- a/OpenSim/Framework/VersionInfo.cs
+++ b/OpenSim/Framework/VersionInfo.cs
@@ -57,7 +57,7 @@ namespace OpenSim
57 return versionString.PadRight(VERSIONINFO_VERSION_LENGTH); 57 return versionString.PadRight(VERSIONINFO_VERSION_LENGTH);
58 } 58 }
59 59
60 public const int VERSIONINFO_VERSION_LENGTH = 27; 60 public const int VERSIONINFO_VERSION_LENGTH = 30;
61 61
62 /// <value> 62 /// <value>
63 /// This is the external interface version. It is separate from the OpenSimulator project version. 63 /// This is the external interface version. It is separate from the OpenSimulator project version.