Both atime and diratime should switch _off_ the corresponding no* flag.

This commit is contained in:
Rob Landley 2006-01-10 02:37:20 +00:00
parent bd67e8074a
commit 8b0efdb1a1

View 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}