mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
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:
parent
b74fb8e220
commit
cd3e7ac89b
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue