tbug fixes; quieter - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 80568494de9003c3c85cd1e07ece44066760b67b
DIR parent 0d4243f78929fe3b7f7501776483f10cd515b482
HTML Author: rsc <devnull@localhost>
Date: Fri, 11 Feb 2005 16:53:54 +0000
bug fixes; quieter
Diffstat:
M src/cmd/9pserve.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
DIR diff --git a/src/cmd/9pserve.c b/src/cmd/9pserve.c
t@@ -212,7 +212,7 @@ ignorepipe(void *v, char *s)
USED(v);
if(strcmp(s, "sys: write on closed pipe") == 0)
return 1;
- fprint(2, "%T msg: %s\n", s);
+ fprint(2, "%T note: %s\n", s);
return 0;
}
t@@ -689,9 +689,9 @@ connoutthread(void *arg)
break;
case Tauth:
if(err && m->afid){
- fprint(2, "%T auth error\n");
+ if(verbose) fprint(2, "%T auth error\n");
if(delhash(m->c->fid, m->afid->cfid, m->afid) == 0)
- fidput(m->fid);
+ fidput(m->afid);
}
break;
case Tattach: