diff options
author | benedwards14 <53377856+benedwards14@users.noreply.github.com> | 2019-10-28 17:53:51 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-10-28 17:53:51 (GMT) |
commit | 794616f837c254c68d8384ab48fb78123a3c8a8b (patch) | |
tree | dd53c6c8d0cd1ee4d43f131a7e0285f7e45e40de /Tools | |
parent | edb172a87296d9359593a23cd9a09f5867ea1f0e (diff) | |
download | cpython-794616f837c254c68d8384ab48fb78123a3c8a8b.zip cpython-794616f837c254c68d8384ab48fb78123a3c8a8b.tar.gz cpython-794616f837c254c68d8384ab48fb78123a3c8a8b.tar.bz2 |
bpo-38534: Replace wrong KB number references (GH-16955)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp index 570798d..fbdf7b6 100644 --- a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp +++ b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp @@ -3013,8 +3013,8 @@ private: } else if (IsWindowsVersionOrGreater(6, 1, 1)) { HMODULE hKernel32 = GetModuleHandleW(L"kernel32"); if (hKernel32 && !GetProcAddress(hKernel32, "AddDllDirectory")) { - BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows Server 2008 R2 without KB2533625"); - BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533625 update is required to continue."); + BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows Server 2008 R2 without KB2533623"); + BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533623 update is required to continue."); /* The "MissingSP1" error also specifies updates are required */ LocGetString(_wixLoc, L"#(loc.FailureWS2K8R2MissingSP1)", &pLocString); } else { @@ -3044,8 +3044,8 @@ private: } else if (IsWindows7SP1OrGreater()) { HMODULE hKernel32 = GetModuleHandleW(L"kernel32"); if (hKernel32 && !GetProcAddress(hKernel32, "AddDllDirectory")) { - BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows 7 SP1 without KB2533625"); - BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533625 update is required to continue."); + BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows 7 SP1 without KB2533623"); + BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533623 update is required to continue."); /* The "MissingSP1" error also specifies updates are required */ LocGetString(_wixLoc, L"#(loc.FailureWin7MissingSP1)", &pLocString); } else { |