summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-03-16 17:06:21 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2010-03-16 17:06:21 +0100
commit16cb5ae53caba2a3cc9091026037c55d23cf3199 (patch)
treee641f50ff11b34d9be504a1fa3710600bde13c1f
parent219336ec5a560a472f7b4e1d60a42e13685e9a5c (diff)
downloadrsyslog-16cb5ae53caba2a3cc9091026037c55d23cf3199.tar.gz
rsyslog-16cb5ae53caba2a3cc9091026037c55d23cf3199.tar.xz
rsyslog-16cb5ae53caba2a3cc9091026037c55d23cf3199.zip
enhanced dbgoprint() buffer size
-rw-r--r--runtime/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/debug.c b/runtime/debug.c
index bc581a5d..9b7c2952 100644
--- a/runtime/debug.c
+++ b/runtime/debug.c
@@ -922,7 +922,7 @@ void
dbgoprint(obj_t *pObj, char *fmt, ...)
{
va_list ap;
- char pszWriteBuf[1024];
+ char pszWriteBuf[32*1024];
size_t lenWriteBuf;
if(!(Debug && debugging_on))