diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-08 08:45:24 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-08 08:45:24 +0000 |
commit | 6d4bd34517643505dab731fec16d3afeba2169ab (patch) | |
tree | 8815be565a7c07e9050d7a0de80282e884edcd18 /obj.c | |
parent | c44de2807a899521c8542321d91e3074f3c40086 (diff) | |
download | rsyslog-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.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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)); |