From: Lee Dogeon Date: Mon, 14 Jul 2025 08:02:05 +0000 (+0900) Subject: gh-67341: fix a typo in `Include/fileutils.h` (#136049) X-Git-Tag: v3.15.0a1~982 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd3e7ac89b151d1b2d8088f6c424a064ff7e1fe9;p=thirdparty%2FPython%2Fcpython.git gh-67341: fix a typo in `Include/fileutils.h` (#136049) `IO_REPARSE_TAG_SYMLINK` is mapped to `S_IFLNK` in `fileutils.c`, not in `posixmodule.c` --- diff --git a/Include/fileutils.h b/Include/fileutils.h index 1509198e45f0..00c37fa46024 100644 --- a/Include/fileutils.h +++ b/Include/fileutils.h @@ -16,7 +16,7 @@ # define S_IFMT 0170000 #endif #ifndef S_IFLNK - // Windows doesn't define S_IFLNK, but posixmodule.c maps + // Windows doesn't define S_IFLNK, but fileutils.c maps // IO_REPARSE_TAG_SYMLINK to S_IFLNK. # define S_IFLNK 0120000 #endif