Fixed apparent mode for symbolic links

N2009_11_14_FIXES
jpandre 2007-11-20 07:33:53 +00:00
parent b2025c15d0
commit 9e788a40c5
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ static int ntfs_fuse_getattr(const char *org_path, struct stat *stbuf)
set_fuse_error(&res);
else
if (S_ISLNK(stbuf->st_mode))
stbuf->st_mode |= (0777 & ~ctx->fmask);
stbuf->st_mode |= 0777;
} else {
stbuf->st_uid = ctx->uid;
stbuf->st_gid = ctx->gid;