summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorDaniel Dickman <daniel@cvs.openbsd.org>2014-06-24 02:32:44 +0000
committerDaniel Dickman <daniel@cvs.openbsd.org>2014-06-24 02:32:44 +0000
commitd13e547914d793e8876d31f20b75b23905014075 (patch)
treefe20f0c66570e95a33adbe1dddcb7a107a9a0fee /sbin
parent9a82d2c86b8b45390e4bc641ccd38e0332b02f5b (diff)
remove the noaccesstime synonym for noatime which was previously added for BSD/OS compatibility.
ok deraadt@, miod@i, millert@
Diffstat (limited to 'sbin')
-rw-r--r--sbin/mount/mount.87
-rw-r--r--sbin/mount/mount.c3
2 files changed, 3 insertions, 7 deletions
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8
index aafe67750ee..1a1c0e5fadb 100644
--- a/sbin/mount/mount.8
+++ b/sbin/mount/mount.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: mount.8,v 1.73 2013/12/17 18:50:06 espie Exp $
+.\" $OpenBSD: mount.8,v 1.74 2014/06/24 02:32:43 daniel Exp $
.\" $NetBSD: mount.8,v 1.11 1995/07/12 06:23:21 cgd Exp $
.\"
.\" Copyright (c) 1980, 1989, 1991, 1993
@@ -30,7 +30,7 @@
.\"
.\" @(#)mount.8 8.7 (Berkeley) 3/27/94
.\"
-.Dd $Mdocdate: December 17 2013 $
+.Dd $Mdocdate: June 24 2014 $
.Dt MOUNT 8
.Os
.Sh NAME
@@ -195,9 +195,6 @@ Do not mount the file system automatically
or
.Fl a
options).
-.It noaccesstime
-Synonym for noatime provided for compatibility with
-other operating systems.
.It 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
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index f613b675032..f0c2a84c008 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mount.c,v 1.54 2013/04/21 11:05:14 jsing Exp $ */
+/* $OpenBSD: mount.c,v 1.55 2014/06/24 02:32:43 daniel Exp $ */
/* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */
/*
@@ -84,7 +84,6 @@ static struct opt {
{ MNT_EXRDONLY, 1, "exported read-only", "" },
{ MNT_LOCAL, 0, "local", "" },
{ MNT_NOATIME, 0, "noatime", "noatime" },
- { MNT_NOATIME, 0, "noaccesstime", "" },
{ MNT_NODEV, 0, "nodev", "nodev" },
{ MNT_NOEXEC, 0, "noexec", "noexec" },
{ MNT_NOSUID, 0, "nosuid", "nosuid" },