wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit a1d855de5412504454a46963d4e3c3dea845ebd5
parent b10ede6590851c77bf66557be5927ba8c425b40a
Author: Kris Maglione <jg@suckless.org>
Date:   Wed, 21 Feb 2007 02:14:22 -0500

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

Diffstat:
fs.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/fs.c b/fs.c @@ -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);