Both atime and diratime should switch _off_ the corresponding no* flag.
authorRob Landley <rob@landley.net>
Tue, 10 Jan 2006 02:37:20 +0000 (02:37 -0000)
committerRob Landley <rob@landley.net>
Tue, 10 Jan 2006 02:37:20 +0000 (02:37 -0000)
util-linux/mount.c

index 4b8e81c..e0a2e29 100644 (file)
@@ -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}