aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
diff options
context:
space:
mode:
authorAndriy Gapon <avg@FreeBSD.org>2010-04-29 10:04:00 +0000
committerAndriy Gapon <avg@FreeBSD.org>2010-04-29 10:04:00 +0000
commitdeb3b115e23af3fd3016c4105caf4a3f9b01c7a3 (patch)
tree9696dd1a71cba9e25be937a5fbf25899a85e8f5c /sys/ufs
parent6fb8c0c117d799bfb34f884996432dd8ee983625 (diff)
downloadsrc-deb3b115e23af3fd3016c4105caf4a3f9b01c7a3.tar.gz
src-deb3b115e23af3fd3016c4105caf4a3f9b01c7a3.zip
ffs_vfsops: restore alphabetic order of options in ffs_opts
The order was not correct only for nfsv4acls. ("no" prefix is ignored) MFC after: 1 week
Notes
Notes: svn path=/head/; revision=207366
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c
index e40336863248..2963514508ee 100644
--- a/sys/ufs/ffs/ffs_vfsops.c
+++ b/sys/ufs/ffs/ffs_vfsops.c
@@ -126,8 +126,8 @@ static struct buf_ops ffs_ops = {
static const char *ffs_opts[] = { "acls", "async", "noatime", "noclusterr",
"noclusterw", "noexec", "export", "force", "from", "multilabel",
- "snapshot", "nosuid", "suiddir", "nosymfollow", "sync",
- "union", "nfsv4acls", NULL };
+ "nfsv4acls", "snapshot", "nosuid", "suiddir", "nosymfollow", "sync",
+ "union", NULL };
static int
ffs_mount(struct mount *mp)