summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-09 10:15:53 +0000
committerkuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-09 10:15:53 +0000
commit66bf414cf586de87013a19aa14ec7de5e1741e7e (patch)
tree2817f33c589184c42d36cbb66691133f54c5a9d1
parentab8048755fd3349eb593f455488555fe8918d42c (diff)
downloadchromium_src-66bf414cf586de87013a19aa14ec7de5e1741e7e.zip
chromium_src-66bf414cf586de87013a19aa14ec7de5e1741e7e.tar.gz
chromium_src-66bf414cf586de87013a19aa14ec7de5e1741e7e.tar.bz2
Min XP Service Pack required is two not one.
BUG=6381 This is just duplicate of http://codereview.chromium.org/62142 for committing the change, as I had to switch git clients. Review URL: http://codereview.chromium.org/65002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13412 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/installer/util/install_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/util/install_util.cc b/chrome/installer/util/install_util.cc
index 86f0847..3551564 100644
--- a/chrome/installer/util/install_util.cc
+++ b/chrome/installer/util/install_util.cc
@@ -78,11 +78,11 @@ bool InstallUtil::IsOSSupported() {
win_util::WinVersion version = win_util::GetWinVersion();
win_util::GetServicePackLevel(&major, &minor);
- // We do not support Win2K or older, or XP without service pack 1.
+ // We do not support Win2K or older, or XP without service pack 2.
LOG(INFO) << "Windows Version: " << version
<< ", Service Pack: " << major << "." << minor;
if ((version > win_util::WINVERSION_XP) ||
- (version == win_util::WINVERSION_XP && major >= 1)) {
+ (version == win_util::WINVERSION_XP && major >= 2)) {
return true;
}
return false;