plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 6322b295cf737c785f39efa978522b0a7da5e6fa
parent 73ac88baa74db4592a521270ab7f565e926132d8
Author: rsc <devnull@localhost>
Date:   Mon, 18 Jun 2007 15:19:26 +0000

ignore window resize; should be elsewhere

Diffstat:
Msrc/cmd/9pserve.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/cmd/9pserve.c b/src/cmd/9pserve.c @@ -260,6 +260,8 @@ ignorepipe(void *v, char *s) return 1; if(strcmp(s, "sys: tstp") == 0) return 1; + if(strcmp(s, "sys: window size change") == 0) + return 1; fprint(2, "9pserve %s: %T note: %s\n", addr, s); return 0; }