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

Reply via email to