--- buffer.c.orig Tue Feb 21 00:46:02 2006 +++ buffer.c Tue Feb 21 00:46:33 2006 @@ -194,7 +194,7 @@ /* Numbers of blocks in the queue. */ -#define MAX_BLOCKS 2048 +#define MAX_BLOCKS 8192 int blocks = 1; /* Circular increment of a buffer index */ #define INC(i) (((i)+1) == blocks ? 0 : ((i)+1))