summaryrefslogtreecommitdiff
path: root/sys/src/cmd/cwfs
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2012-07-24 20:09:28 +0200
committercinap_lenrek <cinap_lenrek@gmx.de>2012-07-24 20:09:28 +0200
commitdc544a34625603602db7788156a9b4b45bd33cd8 (patch)
treebcd67fa6065726c033bf950e850d4be14e1754da /sys/src/cmd/cwfs
parentffc58b342995c6537f442db710ab213c057f968d (diff)
cwfs: remove noatime runtime option
Diffstat (limited to 'sys/src/cmd/cwfs')
-rw-r--r--sys/src/cmd/cwfs/con.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sys/src/cmd/cwfs/con.c b/sys/src/cmd/cwfs/con.c
index fb5be9666..201e4ac7e 100644
--- a/sys/src/cmd/cwfs/con.c
+++ b/sys/src/cmd/cwfs/con.c
@@ -694,14 +694,6 @@ cmd_noauth(int, char *[])
}
void
-cmd_noatime(int, char *[])
-{
- noatime = !noatime;
- noatimeset++;
- print("atime %s\n", noatime ? "disabled" : "enabled");
-}
-
-void
cmd_noattach(int, char *[])
{
noattach = !noattach;
@@ -775,7 +767,6 @@ installcmds(void)
cmd_install("hangup", "chan -- clunk files", cmd_hangup);
cmd_install("printconf", "-- print configuration", cmd_printconf);
cmd_install("noauth", "toggle noauth flag", cmd_noauth);
- cmd_install("noatime", "toggle noatime flag", cmd_noatime);
cmd_install("noattach", "toggle noattach flag", cmd_noattach);
cmd_install("files", "report on files structure", cmd_files);