提交 954f1d9b 编写于 作者: xqyjlj's avatar xqyjlj 提交者: guo

🐞 fix(components/dfs/src/dfs_posix.c): use stat to implement fstat

上级 63c7d0ce
......@@ -353,21 +353,7 @@ int fstat(int fildes, struct stat *buf)
return -1;
}
/* it's the root directory */
buf->st_dev = 0;
buf->st_mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH |
S_IWUSR | S_IWGRP | S_IWOTH;
if (d->vnode->type == FT_DIRECTORY)
{
buf->st_mode &= ~S_IFREG;
buf->st_mode |= S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH;
}
buf->st_size = d->vnode->size;
buf->st_mtime = 0;
return RT_EOK;
return stat(d->vnode->fullpath, buf);
}
RTM_EXPORT(fstat);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册