ignore window resize; should be elsewhere

This commit is contained in:
rsc 2007-06-18 15:19:26 +00:00
parent 73ac88baa7
commit 6322b295cf

View file

@ -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;
}