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`
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user