i forgot about this. this check is only executed if $NAMESPACE
is not set. (that is, when deriving the namespace from $DISPLAY.)
- erik
erik quanstrom <[EMAIL PROTECTED]> writes
|
| interesting, lib9/getns.c has this code:
|
| ; grep -C 5 0777 $home/cvs/plan9/src/lib9/getns.c
| if((d->mode&0777) != 0700 || strcmp(d->uid, getuser()) != 0){
| werrstr("bad name space dir %s", p);
| free(p);
| free(d);
| return nil;
| }
| free(d);
| return p;
| }
|
| "Russ Cox" <[EMAIL PROTECTED]> writes
|
| |
| | > make sure the permissions on the directory are 700.
| | > it won't work without that.
| |
| | not true. all mine are mode 755 (i've never even looked before)
| | and it works for me.
| |
| | russ