From 948da1d6b81f72dc167e290ba8bee82d42b1f8b0 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Wed, 1 Aug 2007 18:16:01 +0000 Subject: [PATCH] * Workaround for Mono not correctly implementing the OperatingSystemVersion class. --- OpenSim/Framework/General/Util.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/OpenSim/Framework/General/Util.cs b/OpenSim/Framework/General/Util.cs index 9e687bae14..b9f8e9c93e 100644 --- a/OpenSim/Framework/General/Util.cs +++ b/OpenSim/Framework/General/Util.cs @@ -108,8 +108,7 @@ namespace OpenSim.Framework.Utilities // Windows 2000 / Pre-SP2 XP if (System.Environment.OSVersion.Version.Major == 5 && ( - System.Environment.OSVersion.Version.Minor == 0 || - System.Environment.OSVersion.ServicePack == "Service Pack 1")) + System.Environment.OSVersion.Version.Minor == 0)) { reason = "Please update to Windows XP Service Pack 2 or Server2003"; return false;