diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-09 19:28:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-09 19:28:02 +0000 |
commit | 0aaff0e3fa3a8e6a6e1a401bc806ecc8e34c4150 (patch) | |
tree | e596ad0f5c026a88008cd4590cafbd3d713ca4c8 /sbin/mount/mount.c | |
parent | 03370177c57696c2f3c43c9578f8cc5631dbfbbb (diff) |
noatime changed to noaccesstime for consistency with BSD/OS.
Diffstat (limited to 'sbin/mount/mount.c')
-rw-r--r-- | sbin/mount/mount.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 87ce9c4fbdf..0a33b45306b 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.c,v 1.14 1997/03/02 09:38:28 millert Exp $ */ +/* $OpenBSD: mount.c,v 1.15 1997/03/09 19:28:01 millert Exp $ */ /* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount.c 8.19 (Berkeley) 4/19/94"; #else -static char rcsid[] = "$OpenBSD: mount.c,v 1.14 1997/03/02 09:38:28 millert Exp $"; +static char rcsid[] = "$OpenBSD: mount.c,v 1.15 1997/03/09 19:28:01 millert Exp $"; #endif #endif /* not lint */ @@ -93,7 +93,7 @@ static struct opt { { MNT_EXPORTANON, 1, "anon uid mapping" }, { MNT_EXRDONLY, 1, "exported read-only" }, { MNT_LOCAL, 0, "local" }, - { MNT_NOATIME, 0, "noatime" }, + { MNT_NOATIME, 0, "noaccesstime" }, { MNT_NODEV, 0, "nodev" }, { MNT_NOEXEC, 0, "noexec" }, { MNT_NOSUID, 0, "nosuid" }, |