Skip to content

Commit 794616f

Browse files
benedwards14zooba
authored andcommitted
bpo-38534: Replace wrong KB number references (pythonGH-16955)
1 parent edb172a commit 794616f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Doc/whatsnew/3.8.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1970,7 +1970,7 @@ Changes in the Python API
19701970
resolution. If your application relies on these mechanisms, you should check
19711971
for :func:`~os.add_dll_directory` and if it exists, use it to add your DLLs
19721972
directory while loading your library. Note that Windows 7 users will need to
1973-
ensure that Windows Update KB2533625 has been installed (this is also verified
1973+
ensure that Windows Update KB2533623 has been installed (this is also verified
19741974
by the installer).
19751975
(Contributed by Steve Dower in :issue:`36085`.)
19761976

Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3013,8 +3013,8 @@ class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {
30133013
} else if (IsWindowsVersionOrGreater(6, 1, 1)) {
30143014
HMODULE hKernel32 = GetModuleHandleW(L"kernel32");
30153015
if (hKernel32 && !GetProcAddress(hKernel32, "AddDllDirectory")) {
3016-
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows Server 2008 R2 without KB2533625");
3017-
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533625 update is required to continue.");
3016+
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows Server 2008 R2 without KB2533623");
3017+
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533623 update is required to continue.");
30183018
/* The "MissingSP1" error also specifies updates are required */
30193019
LocGetString(_wixLoc, L"#(loc.FailureWS2K8R2MissingSP1)", &pLocString);
30203020
} else {
@@ -3044,8 +3044,8 @@ class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {
30443044
} else if (IsWindows7SP1OrGreater()) {
30453045
HMODULE hKernel32 = GetModuleHandleW(L"kernel32");
30463046
if (hKernel32 && !GetProcAddress(hKernel32, "AddDllDirectory")) {
3047-
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows 7 SP1 without KB2533625");
3048-
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533625 update is required to continue.");
3047+
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows 7 SP1 without KB2533623");
3048+
BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533623 update is required to continue.");
30493049
/* The "MissingSP1" error also specifies updates are required */
30503050
LocGetString(_wixLoc, L"#(loc.FailureWin7MissingSP1)", &pLocString);
30513051
} else {

0 commit comments

Comments
 (0)