cwfs: remove noatime runtime option

This commit is contained in:
cinap_lenrek 2012-07-24 20:09:28 +02:00
parent ffc58b3429
commit dc544a3462

View file

@ -693,14 +693,6 @@ cmd_noauth(int, char *[])
print("auth %s\n", noauth ? "disabled" : "enabled");
}
void
cmd_noatime(int, char *[])
{
noatime = !noatime;
noatimeset++;
print("atime %s\n", noatime ? "disabled" : "enabled");
}
void
cmd_noattach(int, char *[])
{
@ -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);