Message type for VFS_FSTAT

Change-Id: Ibdedcac120fc4bf78e28291d9c97fe02df1928db
This commit is contained in:
2014-05-12 14:19:05 +02:00
parent cd0fd5e725
commit bb2b07940c
4 changed files with 13 additions and 8 deletions

View File

@@ -177,8 +177,8 @@ int do_fstat(void)
int r, rfd;
vir_bytes statbuf;
statbuf = (vir_bytes) job_m_in.VFS_FSTAT_BUF;
rfd = job_m_in.VFS_FSTAT_FD;
statbuf = job_m_in.m_lc_vfs_fstat.buf;
rfd = job_m_in.m_lc_vfs_fstat.fd;
/* Is the file descriptor valid? */
if ((rfilp = get_filp(rfd, VNODE_READ)) == NULL) return(err_code);