diff options
author | Rich Felker <dalias@aerifal.cx> | 2006-10-03 05:25:35 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2006-10-03 05:25:35 +0000 |
commit | 7197e4e7d54104233ca1b6881a8e19e1f49ab104 (patch) | |
tree | 8d3bda9f18dd1c8f1afa207212527372f84b89da /main.c | |
parent | 52acab855e8ab1d668e03bd03e371904b0fc232c (diff) |
use larger buffer, same as linux kernel tty buffer it seems
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ int main(int argc, char *argv[]) struct uudisp d = { }; int tty, max; int i, l; - unsigned char b[128]; + unsigned char b[256]; fd_set fds; struct timeval tv; void *buf; |