aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-10 02:37:20 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-10 02:37:20 +0000
commita6a68ce2f8273ab76a4b40beb52dfd824bd5a06c (patch)
treeff8cef9bb94e12549c1ca3b3f39ff1e7e7dd7422
parente0e2c69f248263e38018d1448ab52d744c505099 (diff)
downloadbusybox-w32-a6a68ce2f8273ab76a4b40beb52dfd824bd5a06c.tar.gz
busybox-w32-a6a68ce2f8273ab76a4b40beb52dfd824bd5a06c.tar.bz2
busybox-w32-a6a68ce2f8273ab76a4b40beb52dfd824bd5a06c.zip
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
-rw-r--r--util-linux/mount.c4
1 files 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 {
52 {"sync", MS_SYNCHRONOUS}, 52 {"sync", MS_SYNCHRONOUS},
53 {"async", ~MS_SYNCHRONOUS}, 53 {"async", ~MS_SYNCHRONOUS},
54 {"remount", MS_REMOUNT}, 54 {"remount", MS_REMOUNT},
55 {"atime", MS_NOATIME}, 55 {"atime", ~MS_NOATIME},
56 {"noatime", MS_NOATIME}, 56 {"noatime", MS_NOATIME},
57 {"diratime", MS_NODIRATIME}, 57 {"diratime", ~MS_NODIRATIME},
58 {"nodiratime", MS_NODIRATIME}, 58 {"nodiratime", MS_NODIRATIME},
59 {"bind", MS_BIND}, 59 {"bind", MS_BIND},
60 {"move", MS_MOVE} 60 {"move", MS_MOVE}