From 5558fa14f4fae8829840dda347623e02531ba966 Mon Sep 17 00:00:00 2001 From: bde Date: Tue, 16 Mar 1999 22:26:51 +0000 Subject: Fixed `mount -a -u ...'. Rev.1.19 broke this by trying too hard to avoid mounting filesystems multiple times. PR: 10572 Submitted by: Cy Schubert --- sbin/mount/mount.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sbin/mount') diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 4939444..87ae109 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)mount.c 8.25 (Berkeley) 5/8/95"; #endif static const char rcsid[] = - "$Id$"; + "$Id: mount.c,v 1.28 1998/07/06 07:12:38 charnier Exp $"; #endif /* not lint */ #include @@ -192,7 +192,8 @@ main(argc, argv) continue; if (hasopt(fs->fs_mntops, "noauto")) continue; - if (ismounted(fs, mntbuf, mntsize)) + if (!(init_flags & MNT_UPDATE) && + ismounted(fs, mntbuf, mntsize)) continue; if (mountfs(fs->fs_vfstype, fs->fs_spec, fs->fs_file, init_flags, options, -- cgit v1.1