aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c
index a42a217442e8..2ef75f80a61e 100644
--- a/sys/ufs/ffs/ffs_vfsops.c
+++ b/sys/ufs/ffs/ffs_vfsops.c
@@ -119,7 +119,7 @@ static struct buf_ops ffs_ops = {
static const char *ffs_opts[] = { "acls", "async", "atime", "clusterr",
"clusterw", "exec", "export", "force", "from", "multilabel",
"snapshot", "suid", "suiddir", "symfollow", "sync",
- "update", "union", NULL };
+ "union", NULL };
static int
ffs_mount(struct mount *mp, struct thread *td)
@@ -177,9 +177,6 @@ ffs_mount(struct mount *mp, struct thread *td)
if (vfs_getopt(mp->mnt_optnew, "snapshot", NULL, NULL) == 0)
mp->mnt_flag |= MNT_SNAPSHOT;
- if (vfs_getopt(mp->mnt_optnew, "update", NULL, NULL) == 0)
- mp->mnt_flag |= MNT_UPDATE;
-
/*
* If updating, check whether changing from read-only to
* read/write; if there is no device name, that's all we do.