From 6512bd5a955b1403095b946a68700a6b9c356ca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Sun, 12 Aug 2007 20:52:23 +0000 Subject: [PATCH] Increase output buffer so output will fit better --- output_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output_client.c b/output_client.c index 1fc29daf..46ab233b 100644 --- a/output_client.c +++ b/output_client.c @@ -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);