diff options
author | avg <avg@FreeBSD.org> | 2010-04-29 10:04:00 +0000 |
---|---|---|
committer | avg <avg@FreeBSD.org> | 2010-04-29 10:04:00 +0000 |
commit | 043deeb56455e1129861bf93ec57f03b90200344 (patch) | |
tree | 9696dd1a71cba9e25be937a5fbf25899a85e8f5c /sys/ufs | |
parent | 8ec6fa6b8c48d5e5aec45bcce7e5e93e531bb971 (diff) | |
download | FreeBSD-src-043deeb56455e1129861bf93ec57f03b90200344.zip FreeBSD-src-043deeb56455e1129861bf93ec57f03b90200344.tar.gz |
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
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index e403368..2963514 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) |