diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2007-10-27 16:14:33 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2007-10-27 16:14:33 +0000 |
commit | 0591a64e3dc226c0f02c114a4102b95823afb087 (patch) | |
tree | ed243bcf4d5ecd2824654725cb063f147b7a2872 | |
parent | 59761712e08a3aaff52ba55fc163766f100b9d0b (diff) | |
download | FreeBSD-src-0591a64e3dc226c0f02c114a4102b95823afb087.zip FreeBSD-src-0591a64e3dc226c0f02c114a4102b95823afb087.tar.gz |
Remove duplicate "union" from ext2_opts.
Noticed by: bde
-rw-r--r-- | sys/gnu/fs/ext2fs/ext2_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/gnu/fs/ext2fs/ext2_vfsops.c b/sys/gnu/fs/ext2fs/ext2_vfsops.c index e39d4e7..c77a5dc 100644 --- a/sys/gnu/fs/ext2fs/ext2_vfsops.c +++ b/sys/gnu/fs/ext2fs/ext2_vfsops.c @@ -117,7 +117,7 @@ static int ext2_check_sb_compat(struct ext2_super_block *es, struct cdev *dev, static int compute_sb_data(struct vnode * devvp, struct ext2_super_block * es, struct ext2_sb_info * fs); -static const char *ext2_opts[] = { "from", "export", "union", "acls", "exec", +static const char *ext2_opts[] = { "from", "export", "acls", "exec", "noatime", "union", "suiddir", "multilabel", "nosymfollow", "noclusterr", "noclusterw", "force", NULL }; |