plumber: comment out bogus user name check

R=rsc
http://codereview.appspot.com/2295043
This commit is contained in:
Russ Cox 2010-10-07 03:31:19 -04:00
parent 873e5f5094
commit a6ba36b663

View file

@ -574,10 +574,12 @@ fsysattach(Fcall *t, uchar *buf, Fid *f)
{ {
Fcall out; Fcall out;
/*
if(strcmp(t->uname, user) != 0){ if(strcmp(t->uname, user) != 0){
fsysrespond(&out, buf, Eperm); fsysrespond(&out, buf, Eperm);
return t; return t;
} }
*/
f->busy = 1; f->busy = 1;
f->open = 0; f->open = 0;
f->qid.type = QTDIR; f->qid.type = QTDIR;