Commit 535ff384 by Sebastian Schuberth

Prefer to use S_IFLNK instead of _S_IFLNK for consistency

parent 732eb0a8
......@@ -627,7 +627,7 @@ static int do_lstat(const char *file_name, struct stat *buf)
fMode |= S_IWRITE;
if (fdata.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)
fMode |= _S_IFLNK;
fMode |= S_IFLNK;
buf->st_ino = 0;
buf->st_gid = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment