From cd3e7ac89b151d1b2d8088f6c424a064ff7e1fe9 Mon Sep 17 00:00:00 2001 From: Lee Dogeon Date: Mon, 14 Jul 2025 17:02:05 +0900 Subject: [PATCH] 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` --- Include/fileutils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3