summaryrefslogtreecommitdiffstats
path: root/obj.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-01-08 08:45:24 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-01-08 08:45:24 +0000
commit6d4bd34517643505dab731fec16d3afeba2169ab (patch)
tree8815be565a7c07e9050d7a0de80282e884edcd18 /obj.c
parentc44de2807a899521c8542321d91e3074f3c40086 (diff)
downloadrsyslog-6d4bd34517643505dab731fec16d3afeba2169ab.tar.gz
rsyslog-6d4bd34517643505dab731fec16d3afeba2169ab.tar.xz
rsyslog-6d4bd34517643505dab731fec16d3afeba2169ab.zip
implemented queue disk reader to switch to multiple files
Diffstat (limited to 'obj.c')
-rw-r--r--obj.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/obj.c b/obj.c
index e9f0ef26..ca4481aa 100644
--- a/obj.c
+++ b/obj.c
@@ -334,7 +334,6 @@ static rsRetVal objDeserializeStr(rsCStrObj **ppCStr, int iLen, serialStore_t *p
ABORT_FINALIZE(RS_RET_OUT_OF_MEMORY);
NEXTC;
-dbgprintf("deserializestring, c: %c (%x)\n", c, c);
for(i = 0 ; i < iLen ; ++i) {
CHKiRet(rsCStrAppendChar(pCStr, c));
NEXTC;
@@ -435,7 +434,7 @@ static rsRetVal objDeserializeProperty(property_t *pProp, serialStore_t *pSerSto
CHKiRet(objDeserializeLong(&iLen, pSerStore));
/* we now need to deserialize the value */
-dbgprintf("deserialized property name '%s', type %d, size %ld, c: %c\n", rsCStrGetSzStrNoNULL(pProp->pcsName), pProp->propType, iLen, c);
+//dbgprintf("deserialized property name '%s', type %d, size %ld, c: %c\n", rsCStrGetSzStrNoNULL(pProp->pcsName), pProp->propType, iLen, c);
switch(pProp->propType) {
case PROPTYPE_PSZ:
CHKiRet(objDeserializeStr(&pProp->val.vpCStr, iLen, pSerStore));