From: Rob Landley Date: Tue, 10 Jan 2006 02:37:20 +0000 (-0000) Subject: Both atime and diratime should switch _off_ the corresponding no* flag. X-Git-Tag: 1_1_0~363 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8b0efdb1a1d0b67875518c0f77e1c1b2a814c048;p=platform%2Fupstream%2Fbusybox.git Both atime and diratime should switch _off_ the corresponding no* flag. --- diff --git a/util-linux/mount.c b/util-linux/mount.c index 4b8e81c..e0a2e29 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}