Don't respond with an error on Tclunk of a file that no longer exists

This commit is contained in:
Kris Maglione 2007-02-21 02:14:22 -05:00
parent b10ede6590
commit a1d855de54

3
fs.c
View File

@ -889,11 +889,10 @@ fs_clunk(P9Req *r) {
FileId *f = r->fid->aux;
if(!verify_file(f)) {
respond(r, Enofile);
respond(r, nil);
return;
}
switch(f->tab.type) {
case FsFColRules:
update_rules(&f->content.rule->rule, f->content.rule->string);