From 5083db626b81a09cbc29da510746b2764af77d88 Mon Sep 17 00:00:00 2001 From: rodrigc Date: Thu, 24 Nov 2005 15:06:40 +0000 Subject: Fix parsing of atime, clusterr, clusterw, exec, suid, symfollow mount options. Noticed by: Amir Shalem < amir at boom dot org dot il> --- sys/ufs/ffs/ffs_vfsops.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/ufs/ffs') diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 10c5bcd..04c4dba 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -116,10 +116,10 @@ static struct buf_ops ffs_ops = { .bop_sync = bufsync, }; -static const char *ffs_opts[] = { "acls", "async", "errmsg", "export", - "force", "from", "multilabel", "noasync", "noatime", "noclusterr", - "noclusterw", "noexec", "nosuid", "nosymfollow", "snapshot", "sync", - "suiddir", "update", "union", NULL }; +static const char *ffs_opts[] = { "acls", "async", "atime", "clusterr", + "clusterw", "exec", "errmsg", "export", "force", "from", "multilabel", + "snapshot", "suid", "suiddir", "symfollow", "sync", + "update", "union", NULL }; static int ffs_mount(struct mount *mp, struct thread *td) -- cgit v1.1