diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-10 04:27:43 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-10 04:27:43 +0000 |
commit | 5d57b24a3c5121cab0c2c29405a82f3245394710 (patch) | |
tree | 8a7837cba237337ff834e80af5bcb80e9487dc9a /sbin/mount/mntopts.h | |
parent | 04de376167e02038368eb2419c479ae8a153ef8a (diff) |
Allow noaccesstime as a synonym for noatime.
Diffstat (limited to 'sbin/mount/mntopts.h')
-rw-r--r-- | sbin/mount/mntopts.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sbin/mount/mntopts.h b/sbin/mount/mntopts.h index 73207de3122..f01f70a1eac 100644 --- a/sbin/mount/mntopts.h +++ b/sbin/mount/mntopts.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mntopts.h,v 1.4 1997/03/09 19:27:59 millert Exp $ */ +/* $OpenBSD: mntopts.h,v 1.5 1997/03/10 04:27:41 millert Exp $ */ /* $NetBSD: mntopts.h,v 1.3 1995/03/18 14:56:59 cgd Exp $ */ /*- @@ -44,7 +44,8 @@ struct mntopt { /* User-visible MNT_ flags. */ #define MOPT_ASYNC { "async", 0, MNT_ASYNC } -#define MOPT_NOATIME { "accesstime", 1, MNT_NOATIME } +#define MOPT_NOACCESSTIME { "accesstime", 1, MNT_NOATIME } +#define MOPT_NOATIME { "atime", 1, MNT_NOATIME } #define MOPT_NODEV { "dev", 1, MNT_NODEV } #define MOPT_NOEXEC { "exec", 1, MNT_NOEXEC } #define MOPT_NOSUID { "suid", 1, MNT_NOSUID } @@ -76,6 +77,7 @@ struct mntopt { MOPT_USERQUOTA, \ MOPT_GROUPQUOTA, \ MOPT_FSTAB_COMPAT, \ + MOPT_NOACCESSTIME, \ MOPT_NOATIME, \ MOPT_NODEV, \ MOPT_NOEXEC, \ |