diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2001-09-28 12:36:54 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2001-09-28 12:36:54 +0000 |
| commit | b4056ade847816b24fc6ad3eb9f6e64de98ad72a (patch) | |
| tree | f974ba3a338627af8b3c31e2ae36878a0a8da307 | |
| parent | bc9c1e902ff1720b220b202743b2fff7ba3c21bb (diff) | |
Notes
| -rw-r--r-- | sys/fs/pseudofs/pseudofs_vnops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/pseudofs/pseudofs_vnops.c b/sys/fs/pseudofs/pseudofs_vnops.c index a5fd6c926d230..e349c67c994ed 100644 --- a/sys/fs/pseudofs/pseudofs_vnops.c +++ b/sys/fs/pseudofs/pseudofs_vnops.c @@ -227,7 +227,7 @@ pfs_read(struct vop_read_args *va) } if (pn->pn_flags & PFS_RAWRD) { - error = (pn->pn_func)(curproc, proc, pn, NULL, uio); + error = (pn->pn_func)(curthread, proc, pn, NULL, uio); if (proc != NULL) PRELE(proc); return (error); @@ -470,7 +470,7 @@ pfs_write(struct vop_read_args *va) } if (pn->pn_flags & PFS_RAWWR) { - error = (pn->pn_func)(curproc, proc, pn, NULL, uio); + error = (pn->pn_func)(curthread, proc, pn, NULL, uio); if (proc != NULL) PRELE(proc); return (error); |
