From d5c746f3a8afa86cf9e068527a728f8ae8dade00 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 9 Dec 2003 23:50:24 +0000 Subject: Fix indenting. Fix a bug noticed by Pete Flugstad. Make certain we close what we open, and don't try to close invalid files when /etc/filesystems exists and is used. --- util-linux/mount.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'util-linux') diff --git a/util-linux/mount.c b/util-linux/mount.c index 15a0b5767..43856eace 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -273,8 +273,7 @@ static int mount_one(char *blockDevice, char *directory, char *filesystemType, filesystemType = buf; if (bb_strlen(filesystemType)) { - status = - do_mount(blockDevice, directory, filesystemType, + status = do_mount(blockDevice, directory, filesystemType, flags | MS_MGC_VAL, string_flags, useMtab, fakeIt, mtab_opts, mount_all); if (status) { @@ -287,7 +286,8 @@ static int mount_one(char *blockDevice, char *directory, char *filesystemType, fclose(f); } - if ((!f || read_proc) && !status) { + if (read_proc && !status) { + f = bb_xfopen("/proc/filesystems", "r"); while (fgets(buf, sizeof(buf), f) != NULL) { @@ -303,8 +303,7 @@ static int mount_one(char *blockDevice, char *directory, char *filesystemType, filesystemType = buf; filesystemType++; /* hop past tab */ - status = - do_mount(blockDevice, directory, filesystemType, + status = do_mount(blockDevice, directory, filesystemType, flags | MS_MGC_VAL, string_flags, useMtab, fakeIt, mtab_opts, mount_all); if (status) { @@ -312,8 +311,8 @@ static int mount_one(char *blockDevice, char *directory, char *filesystemType, } } } + fclose(f); } - fclose(f); } else { status = do_mount(blockDevice, directory, filesystemType, -- cgit v1.2.3