summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ffs
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2008-12-24 03:07:19 +0000
committerobrien <obrien@FreeBSD.org>2008-12-24 03:07:19 +0000
commit0a4722ed76cf251d1ac9283135ec7b01c5384ab5 (patch)
treeaad69bf12243941c25bac82396895ae751eb036f /sbin/fsck_ffs
parent7c3c2fbe0c913f539c862fcb7beaf9f1d78b6489 (diff)
downloadFreeBSD-src-0a4722ed76cf251d1ac9283135ec7b01c5384ab5.zip
FreeBSD-src-0a4722ed76cf251d1ac9283135ec7b01c5384ab5.tar.gz
Garbage collect 'fflags'.
Diffstat (limited to 'sbin/fsck_ffs')
-rw-r--r--sbin/fsck_ffs/main.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/sbin/fsck_ffs/main.c b/sbin/fsck_ffs/main.c
index 9e926aa..2187e45 100644
--- a/sbin/fsck_ffs/main.c
+++ b/sbin/fsck_ffs/main.c
@@ -206,7 +206,6 @@ checkfilesys(char *filesys)
struct iovec *iov;
char errmsg[255];
int iovlen;
- int fflags;
int cylno;
ino_t files;
size_t size;
@@ -343,7 +342,6 @@ checkfilesys(char *filesys)
if (bkgrdflag) {
snprintf(snapname, sizeof snapname,
"%s/.snap/fsck_snapshot", mntp->f_mntonname);
- fflags = mntp->f_flags;
build_iovec(&iov, &iovlen, "fstype", "ffs", 4);
build_iovec(&iov, &iovlen, "from", snapname,
(size_t)-1);
@@ -354,7 +352,7 @@ checkfilesys(char *filesys)
build_iovec(&iov, &iovlen, "update", NULL, 0);
build_iovec(&iov, &iovlen, "snapshot", NULL, 0);
- while (nmount(iov, iovlen, fflags) < 0) {
+ while (nmount(iov, iovlen, mntp->f_flags) < 0) {
if (errno == EEXIST && unlink(snapname) == 0)
continue;
bkgrdflag = 0;
@@ -522,7 +520,6 @@ chkdoreload(struct statfs *mntp)
{
struct iovec *iov;
int iovlen;
- int fflags;
char errmsg[255];
if (mntp == NULL)
@@ -531,7 +528,6 @@ chkdoreload(struct statfs *mntp)
iov = NULL;
iovlen = 0;
errmsg[0] = '\0';
- fflags = mntp->f_flags;
/*
* We modified a mounted file system. Do a mount update on
* it unless it is read-write, so we can continue using it
@@ -552,7 +548,7 @@ chkdoreload(struct statfs *mntp)
* nmount parsing of root mounts and NFS root mounts.
*/
build_iovec(&iov, &iovlen, "ro", NULL, 0);
- if (nmount(iov, iovlen, fflags) == 0) {
+ if (nmount(iov, iovlen, mntp->f_flags) == 0) {
return (0);
}
pwarn("mount reload of '%s' failed: %s %s\n\n",
OpenPOWER on IntegriCloud