From c1ef93f5cac74617074cc7444797df132436e292 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 10 Jan 2000 14:20:53 +0000 Subject: Fix the use of an uninitialized variable in the previous commit. Also, in addition to the previous log message, the last change had a fix for the case where where f.mntfromname is a relative path like da0a. Submitted by: bde --- sbin/fsck_ffs/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sbin/fsck_ffs') 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]); } -- cgit v1.1