From: Todd C. Miller Date: Wed, 5 Mar 2014 13:06:25 +0000 (-0700) Subject: Bump I/O buffer size to 32K X-Git-Tag: SUDO_1_7_10p8~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39396048966eaa9201c7e0b2e456af343846d487;p=sudo Bump I/O buffer size to 32K --HG-- branch : 1.7 --- 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];