git: 9front

Download patch

ref: a45c5f81b4716807db58b169c47c6040a9513976
parent: a3b92ed0c4066cbdc3480568dc594e87623541db
author: cinap_lenrek <cinap_lenrek@gmx.de>
date: Tue Jul 24 16:09:28 EDT 2012

cwfs: remove noatime runtime option

--- a/sys/src/cmd/cwfs/con.c
+++ b/sys/src/cmd/cwfs/con.c
@@ -694,14 +694,6 @@
 }
 
 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 @@
 	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);
 
--