Include UID and GID information for stat() calls using the values filled

into the file descriptor data by falloc().

Reviewed by:	phk
This commit is contained in:
Chris Costello 2000-05-11 22:08:20 +00:00
parent 6492f6750d
commit 12861d58db
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=60404

View File

@ -1093,9 +1093,10 @@ pipe_stat(fp, ub, p)
ub->st_atimespec = pipe->pipe_atime;
ub->st_mtimespec = pipe->pipe_mtime;
ub->st_ctimespec = pipe->pipe_ctime;
ub->st_uid = fp->f_cred->cr_uid;
ub->st_gid = fp->f_cred->cr_gid;
/*
* Left as 0: st_dev, st_ino, st_nlink, st_uid, st_gid, st_rdev,
* st_flags, st_gen.
* Left as 0: st_dev, st_ino, st_nlink, st_rdev, st_flags, st_gen.
* XXX (st_dev, st_ino) should be unique.
*/
return 0;