diff options
author | ru <ru@FreeBSD.org> | 2004-11-29 09:35:01 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-11-29 09:35:01 +0000 |
commit | 36647362c7ae7dc360a692db03473b68db996bba (patch) | |
tree | bdb2240c0c05db1007ffb5cc3645cd07d01422c7 /sbin/mount | |
parent | d722b3d348019f7bdb98f7520b126a9186aeb985 (diff) | |
download | FreeBSD-src-36647362c7ae7dc360a692db03473b68db996bba.zip FreeBSD-src-36647362c7ae7dc360a692db03473b68db996bba.tar.gz |
Fix the mount(8) status reporting, now that MNT_NODEV is a no-op (zero).
Asked to commit by: phk
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mntopts.h | 2 | ||||
-rw-r--r-- | sbin/mount/mount.8 | 8 | ||||
-rw-r--r-- | sbin/mount/mount.c | 2 |
3 files changed, 1 insertions, 11 deletions
diff --git a/sbin/mount/mntopts.h b/sbin/mount/mntopts.h index 5205195..0e22944 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 } @@ -76,7 +75,6 @@ struct mntopt { MOPT_GROUPQUOTA, \ MOPT_FSTAB_COMPAT, \ MOPT_NOATIME, \ - MOPT_NODEV, \ MOPT_NOEXEC, \ MOPT_SUIDDIR, /* must be before MOPT_NOSUID */ \ MOPT_NOSUID, \ diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index 02c8e40..b540f93 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -28,7 +28,7 @@ .\" @(#)mount.8 8.8 (Berkeley) 6/16/94 .\" $FreeBSD$ .\" -.Dd April 7, 2003 +.Dd November 26, 2004 .Dt MOUNT 8 .Os .Sh NAME @@ -177,12 +177,6 @@ flag. Disable read clustering. .It Cm noclusterw Disable write clustering. -.It Cm nodev -Do not interpret character or block special devices on the file system. -This option is useful for a server that has file systems containing -special devices for architectures other than its own. -This option is set automatically when the user does not have super-user -privileges. .It Cm noexec Do not allow execution of any binaries on the mounted file system. This option is useful for a server that has file systems containing diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index df97adb..cecf347 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -93,7 +93,6 @@ static struct opt { { MNT_EXPORTED, "NFS exported" }, { MNT_LOCAL, "local" }, { MNT_NOATIME, "noatime" }, - { MNT_NODEV, "nodev" }, { MNT_NOEXEC, "noexec" }, { MNT_NOSUID, "nosuid" }, { MNT_NOSYMFOLLOW, "nosymfollow" }, @@ -750,7 +749,6 @@ flags2opts(flags) if (flags & MNT_SYNCHRONOUS) res = catopt(res, "sync"); if (flags & MNT_NOEXEC) res = catopt(res, "noexec"); if (flags & MNT_NOSUID) res = catopt(res, "nosuid"); - if (flags & MNT_NODEV) res = catopt(res, "nodev"); if (flags & MNT_UNION) res = catopt(res, "union"); if (flags & MNT_ASYNC) res = catopt(res, "async"); if (flags & MNT_NOATIME) res = catopt(res, "noatime"); |