diff options
author | Tom Rhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
---|---|---|
committer | Tom Rhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
commit | d394511de3304005a8a52e0cbb6dd48fe8b1d3a4 (patch) | |
tree | 0cbeb3775d12e86712b373b6e5a62d8ee7b3abc8 /sys/dev/vinum/vinumrequest.c | |
parent | 2bf6dd18ba2f6fc4830854b9f5d3d79dcffc106d (diff) | |
download | src-d394511de3304005a8a52e0cbb6dd48fe8b1d3a4.tar.gz src-d394511de3304005a8a52e0cbb6dd48fe8b1d3a4.zip |
More s/file system/filesystem/g
Notes
Notes:
svn path=/head/; revision=96755
Diffstat (limited to 'sys/dev/vinum/vinumrequest.c')
-rw-r--r-- | sys/dev/vinum/vinumrequest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vinum/vinumrequest.c b/sys/dev/vinum/vinumrequest.c index 9dde28c1af07..ba4a27334427 100644 --- a/sys/dev/vinum/vinumrequest.c +++ b/sys/dev/vinum/vinumrequest.c @@ -833,8 +833,8 @@ build_rq_buffer(struct rqelement *rqe, struct plex *plex) bp->b_bcount = rqe->buflen << DEV_BSHIFT; /* number of bytes to transfer */ bp->b_resid = bp->b_bcount; /* and it's still all waiting */ bp->b_bufsize = bp->b_bcount; /* and buffer size */ - bp->b_rcred = FSCRED; /* we have the file system credentials */ - bp->b_wcred = FSCRED; /* we have the file system credentials */ + bp->b_rcred = FSCRED; /* we have the filesystem credentials */ + bp->b_wcred = FSCRED; /* we have the filesystem credentials */ if (rqe->flags & XFR_MALLOCED) { /* this operation requires a malloced buffer */ bp->b_data = Malloc(bp->b_bcount); /* get a buffer to put it in */ |