diff options
author | trhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
commit | 28d42899b766c395e5a6476f5bfa88b1481a08c0 (patch) | |
tree | 0cbeb3775d12e86712b373b6e5a62d8ee7b3abc8 /sys/dev/vinum/vinumrequest.c | |
parent | b459f6c72649c5aa0ae116e177e7fb6f302b20ff (diff) | |
download | FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.zip FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.tar.gz |
More s/file system/filesystem/g
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 9dde28c..ba4a273 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 */ |