diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2005-11-29 00:28:17 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2005-11-29 00:28:17 +0000 |
commit | a5e716d31faa58b696a870d13f5e62af2a198257 (patch) | |
tree | 7a410e336c43f675291a4776eaacd0a96ccf88b1 /sbin/mount | |
parent | 1de2727068c3d74bb7342410ff133fc9e1de6680 (diff) | |
download | FreeBSD-src-a5e716d31faa58b696a870d13f5e62af2a198257.zip FreeBSD-src-a5e716d31faa58b696a870d13f5e62af2a198257.tar.gz |
Remove MNT_NODEV mount option. In RELENG_6, MNT_NODEV was a no-op.
The presence of MNT_NODEV was confusing the am-utils autoconf scripts.
PR: conf/79715
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mntopts.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sbin/mount/mntopts.h b/sbin/mount/mntopts.h index 13a3b53..8370446 100644 --- a/sbin/mount/mntopts.h +++ b/sbin/mount/mntopts.h @@ -40,7 +40,6 @@ struct mntopt { /* User-visible MNT_ flags. */ #define MOPT_ASYNC { "async", 0, MNT_ASYNC, 0 } #define MOPT_NOATIME { "atime", 1, MNT_NOATIME, 0 } -#define MOPT_NODEV { "dev", 1, MNT_NODEV, 0 } #define MOPT_NOEXEC { "exec", 1, MNT_NOEXEC, 0 } #define MOPT_NOSUID { "suid", 1, MNT_NOSUID, 0 } #define MOPT_NOSYMFOLLOW { "symfollow", 1, MNT_NOSYMFOLLOW, 0 } @@ -79,7 +78,6 @@ struct mntopt { MOPT_GROUPQUOTA, \ MOPT_FSTAB_COMPAT, \ MOPT_NOATIME, \ - MOPT_NODEV, \ MOPT_NOEXEC, \ MOPT_SUIDDIR, /* must be before MOPT_NOSUID */ \ MOPT_NOSUID, \ |