summaryrefslogtreecommitdiffstats
path: root/stringbuf.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-01-07 09:51:55 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-01-07 09:51:55 +0000
commitcfbb74e7a59c93c3816b431ffb25adf2032c5ef0 (patch)
tree3289f5474b50ce2ffa5785998e38c43029529500 /stringbuf.c
parentc8b946aa94251a93fc934d8e3e875f5f26fcfcfd (diff)
downloadrsyslog-cfbb74e7a59c93c3816b431ffb25adf2032c5ef0.tar.gz
rsyslog-cfbb74e7a59c93c3816b431ffb25adf2032c5ef0.tar.xz
rsyslog-cfbb74e7a59c93c3816b431ffb25adf2032c5ef0.zip
implemented disk queue as far as I could without an object de-serializer
Diffstat (limited to 'stringbuf.c')
-rwxr-xr-xstringbuf.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/stringbuf.c b/stringbuf.c
index 040ede77..b777c40d 100755
--- a/stringbuf.c
+++ b/stringbuf.c
@@ -168,7 +168,6 @@ static rsRetVal rsCStrExtendBuf(rsCStrObj *pThis, size_t iMinNeeded)
}
iNewSize += pThis->iBufSize; /* add current size */
-dbgprintf("extending string buffer, old %d, new %d\n", pThis->iBufSize, iNewSize);
/* and then allocate and copy over */
/* DEV debugging only: dbgprintf("extending string buffer, old %d, new %d\n", pThis->iBufSize, iNewSize); */
if((pNewBuf = (uchar*) malloc(iNewSize * sizeof(uchar))) == NULL)