commit c042e61ec71fcb5525461b40a5ef8ab189156135
parent 33488b09cb167525d50ab5f411fed6884093321f
Author: rsc <devnull@localhost>
Date: Fri, 18 Mar 2005 19:01:39 +0000
ignore tstp
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/cmd/9pserve.c b/src/cmd/9pserve.c
@@ -212,7 +212,9 @@ ignorepipe(void *v, char *s)
USED(v);
if(strcmp(s, "sys: write on closed pipe") == 0)
return 1;
- fprint(2, "%T note: %s\n", s);
+ if(strcmp(s, "sys: tstp") == 0)
+ return 1;
+ fprint(2, "9pserve %s: %T note: %s\n", addr, s);
return 0;
}