wmii

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

commit 1bee486269a6b4f5b758f4c5855c33436c47429b
parent ece0f13675f0c0af98a0681e32893211fef1676f
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Fri, 10 Mar 2006 23:30:08 +0100

fixed bug reported by unequal (wrong /bar permissions)


Diffstat:
cmd/wm/fs.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/cmd/wm/fs.c b/cmd/wm/fs.c @@ -490,6 +490,8 @@ type2stat(Stat *stat, char *wname, Qid *dir) return mkstat(stat, dir, wname, 0, DMDIR | DMREAD | DMEXEC); break; case FsDbar: + return mkstat(stat, dir, wname, 0, DMDIR | DMREAD | DMWRITE | DMEXEC); + break; case FsFctl: return mkstat(stat, dir, wname, 0, DMWRITE); break;