diff options
author | Bruce Evans <bde@FreeBSD.org> | 1997-08-25 21:14:22 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1997-08-25 21:14:22 +0000 |
commit | 958294d6f6acdc8d578fcc672ab161a4802d741e (patch) | |
tree | 614b1c5e15fd83ca1a65b42eb2ee717c882d2658 /sbin/mount_ifs/mount_ufs.c | |
parent | 047307e09d2492f0378815650e64c0c6231be782 (diff) | |
download | src-958294d6f6acdc8d578fcc672ab161a4802d741e.tar.gz src-958294d6f6acdc8d578fcc672ab161a4802d741e.zip |
Removed duplicate MOPT_FORCE and sorted the first one. Rev.1.5 and
Lite2 messed up the ordering differently.
Notes
Notes:
svn path=/head/; revision=28738
Diffstat (limited to 'sbin/mount_ifs/mount_ufs.c')
-rw-r--r-- | sbin/mount_ifs/mount_ufs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/mount_ifs/mount_ufs.c b/sbin/mount_ifs/mount_ufs.c index 58a1addc2332..f40fe32f58bf 100644 --- a/sbin/mount_ifs/mount_ufs.c +++ b/sbin/mount_ifs/mount_ufs.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)mount_ufs.c 8.4 (Berkeley) 4/26/95"; #else static const char rcsid[] = - "$Id$"; + "$Id: mount_ufs.c,v 1.9 1997/08/24 21:02:50 steve Exp $"; #endif #endif /* not lint */ @@ -66,10 +66,9 @@ static void ufs_usage __P((void)); static struct mntopt mopts[] = { MOPT_STDOPTS, MOPT_ASYNC, - MOPT_SYNC, MOPT_FORCE, + MOPT_SYNC, MOPT_UPDATE, - MOPT_FORCE, { NULL } }; |