From a6a68ce2f8273ab76a4b40beb52dfd824bd5a06c Mon Sep 17 00:00:00 2001 From: landley Date: Tue, 10 Jan 2006 02:37:20 +0000 Subject: Both atime and diratime should switch _off_ the corresponding no* flag. git-svn-id: svn://busybox.net/trunk/busybox@13215 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- util-linux/mount.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util-linux/mount.c b/util-linux/mount.c index 4b8e81ca1..e0a2e2930 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -52,9 +52,9 @@ struct { {"sync", MS_SYNCHRONOUS}, {"async", ~MS_SYNCHRONOUS}, {"remount", MS_REMOUNT}, - {"atime", MS_NOATIME}, + {"atime", ~MS_NOATIME}, {"noatime", MS_NOATIME}, - {"diratime", MS_NODIRATIME}, + {"diratime", ~MS_NODIRATIME}, {"nodiratime", MS_NODIRATIME}, {"bind", MS_BIND}, {"move", MS_MOVE} -- cgit v1.2.3-55-g6feb