From d81182b8ec3b1593daf241d44757a9fa68fd14cc Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Sat, 8 Jan 2022 00:06:53 +0000 Subject: bpo-46217: Revert use of Windows constant that is newer than what we support (GH-30473) --- Python/fileutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/fileutils.c') diff --git a/Python/fileutils.c b/Python/fileutils.c index d570be5577..151c6feb2e 100644 --- a/Python/fileutils.c +++ b/Python/fileutils.c @@ -2129,7 +2129,7 @@ join_relfile(wchar_t *buffer, size_t bufsize, { #ifdef MS_WINDOWS if (FAILED(PathCchCombineEx(buffer, bufsize, dirname, relfile, - PATHCCH_ALLOW_LONG_PATHS | PATHCCH_FORCE_ENABLE_LONG_NAME_PROCESS))) { + PATHCCH_ALLOW_LONG_PATHS))) { return -1; } #else -- cgit v1.2.1