mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-38534: Replace wrong KB number references (GH-16955)
This commit is contained in:
parent
edb172a872
commit
794616f837
2 changed files with 5 additions and 5 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue