Increase output buffer so output will fit better

This commit is contained in:
Andreas Öman 2007-08-12 20:52:23 +00:00
parent 593e61dbd5
commit 6512bd5a95

View file

@ -43,7 +43,7 @@ static void
cprintf(client_t *c, const char *fmt, ...)
{
va_list ap;
char buf[1000];
char buf[5000];
va_start(ap, fmt);
vsnprintf(buf, sizeof(buf), fmt, ap);