summaryrefslogtreecommitdiffstats
path: root/Python/fileutils.c
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2022-01-08 00:06:53 (GMT)
committerGitHub <noreply@github.com>2022-01-08 00:06:53 (GMT)
commitd81182b8ec3b1593daf241d44757a9fa68fd14cc (patch)
treea86bacd4fc6f11c52458a434fb783a847a233feb /Python/fileutils.c
parentc9dc1f491e8edb0bc433cde73190a3015d226891 (diff)
downloadcpython-d81182b8ec3b1593daf241d44757a9fa68fd14cc.zip
cpython-d81182b8ec3b1593daf241d44757a9fa68fd14cc.tar.gz
cpython-d81182b8ec3b1593daf241d44757a9fa68fd14cc.tar.bz2
bpo-46217: Revert use of Windows constant that is newer than what we support (GH-30473)
Diffstat (limited to 'Python/fileutils.c')
-rw-r--r--Python/fileutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/fileutils.c b/Python/fileutils.c
index d570be5..151c6fe 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