summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@courtesan.com>2014-03-05 06:06:25 -0700
committerTodd C. Miller <Todd.Miller@courtesan.com>2014-03-05 06:06:25 -0700
commitcaeb0a40e1c693734d45c66d2314b5566c910bbc (patch)
treeb471cd46786f397befc07069cb3001f80f85e7dc
parentf1accca8df92ba605dc080ea8f2d6366bf559f1d (diff)
downloadsudo-caeb0a40e1c693734d45c66d2314b5566c910bbc.tar.gz
Bump I/O buffer size to 32K
-rw-r--r--exec_pty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec_pty.c b/exec_pty.c
index 5dd5012af..105199e8a 100644
--- a/exec_pty.c
+++ b/exec_pty.c
@@ -88,7 +88,7 @@ struct io_buffer {
int rfd; /* reader (producer) */
int wfd; /* writer (consumer) */
int (*action) __P((const char *buf, unsigned int len));
- char buf[16 * 1024];
+ char buf[32 * 1024];
};
static char slavename[PATH_MAX];