summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sbin/fsck/main.c4
-rw-r--r--sbin/fsck_ffs/main.c4
-rw-r--r--sbin/fsck_ifs/main.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/sbin/fsck/main.c b/sbin/fsck/main.c
index 4d49a38..6463990 100644
--- a/sbin/fsck/main.c
+++ b/sbin/fsck/main.c
@@ -339,7 +339,7 @@ checkfilesys(filesys, mntpt, auxdata, child)
resolved = 0;
/*
- * Check to see if the filesystem if mounted read-write.
+ * Check to see if the filesystem is mounted read-write.
*/
if (mntbuf != NULL && (mntbuf->f_flags & MNT_RDONLY) == 0)
resolved = 0;
@@ -409,7 +409,7 @@ getmntpt(name)
strcat(device, devname);
devname = device;
}
- if (stat(device, &mntdevstat) == 0 &&
+ if (stat(devname, &mntdevstat) == 0 &&
mntdevstat.st_rdev == devstat.st_rdev)
return (&mntbuf[i]);
}
diff --git a/sbin/fsck_ffs/main.c b/sbin/fsck_ffs/main.c
index 4d49a38..6463990 100644
--- a/sbin/fsck_ffs/main.c
+++ b/sbin/fsck_ffs/main.c
@@ -339,7 +339,7 @@ checkfilesys(filesys, mntpt, auxdata, child)
resolved = 0;
/*
- * Check to see if the filesystem if mounted read-write.
+ * Check to see if the filesystem is mounted read-write.
*/
if (mntbuf != NULL && (mntbuf->f_flags & MNT_RDONLY) == 0)
resolved = 0;
@@ -409,7 +409,7 @@ getmntpt(name)
strcat(device, devname);
devname = device;
}
- if (stat(device, &mntdevstat) == 0 &&
+ if (stat(devname, &mntdevstat) == 0 &&
mntdevstat.st_rdev == devstat.st_rdev)
return (&mntbuf[i]);
}
diff --git a/sbin/fsck_ifs/main.c b/sbin/fsck_ifs/main.c
index 4d49a38..6463990 100644
--- a/sbin/fsck_ifs/main.c
+++ b/sbin/fsck_ifs/main.c
@@ -339,7 +339,7 @@ checkfilesys(filesys, mntpt, auxdata, child)
resolved = 0;
/*
- * Check to see if the filesystem if mounted read-write.
+ * Check to see if the filesystem is mounted read-write.
*/
if (mntbuf != NULL && (mntbuf->f_flags & MNT_RDONLY) == 0)
resolved = 0;
@@ -409,7 +409,7 @@ getmntpt(name)
strcat(device, devname);
devname = device;
}
- if (stat(device, &mntdevstat) == 0 &&
+ if (stat(devname, &mntdevstat) == 0 &&
mntdevstat.st_rdev == devstat.st_rdev)
return (&mntbuf[i]);
}
OpenPOWER on IntegriCloud