commit aa9c4c48a8f6e4db9fc31bdbdfcf6eb59ebe06a8
parent eaa2d5f3821fc73cda58b49f6e83cd6ecee5b13b
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Wed, 12 Apr 2006 14:31:38 +0200
fixed reading /view/X/name
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/wm/fs.c b/cmd/wm/fs.c
@@ -408,7 +408,7 @@ mkqid(Qid *dir, char *wname, Qid *new)
if(dir_type == FsDroot)
return -1;
case FsFtags:
- if((dir_type != FsDGclient) && (dir_type != FsDclient))
+ if((dir_type != FsDview) && (dir_type != FsDGclient) && (dir_type != FsDclient))
return -1;
if((dir_type == FsDclient) && ((dir_i1 == -1 || dir_i2 == -1 || dir_i3 == -1)))
return -1;