2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-30 22:05:46 +00:00

Bump I/O buffer size 32K

This commit is contained in:
Todd C. Miller
2013-03-15 11:31:58 -04:00
parent 1614c3cad1
commit 5cda642eb9

View File

@@ -85,7 +85,7 @@ struct io_buffer {
int rfd; /* reader (producer) */
int wfd; /* writer (consumer) */
bool (*action)(const char *buf, unsigned int len);
char buf[16 * 1024];
char buf[32 * 1024];
};
static char slavename[PATH_MAX];