diff options
| author | Chris Costello <chris@FreeBSD.org> | 2000-05-11 22:08:20 +0000 |
|---|---|---|
| committer | Chris Costello <chris@FreeBSD.org> | 2000-05-11 22:08:20 +0000 |
| commit | 12861d58db687c232ed5da487068cc450566e1df (patch) | |
| tree | 2aaf7cb61ac0669b3b5e69d43fa29b325a768379 | |
| parent | 6492f6750d58cffe6b6021256064eaf1bf9bd29c (diff) | |
Notes
| -rw-r--r-- | sys/kern/sys_pipe.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index be868830f2d0..40d47e46a6d3 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -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; |
