2
0
Fork 0

Use larger buffer for stderr pipe reads

This commit is contained in:
Stefan Bühler 2009-10-03 21:50:55 +02:00
parent 8ac057d3d5
commit 3222d42bba
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
#include <grp.h>
static void read_pipe(liServer *srv, liErrorPipe *epipe, gboolean flush) {
const ssize_t max_read = 1024;
const ssize_t max_read = 8192;
ssize_t r, toread;
GString *buf;
int count = 10;