diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-15 17:47:04 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-15 17:47:04 +0200 |
commit | 199f01614ca45854a820878b5d0f91f729fc379c (patch) | |
tree | 5caa646bd6dd9071a598df567698fbdf6fe55c17 /tools/omfwd.c | |
parent | 11e67b1c1066d7ef0683ff3c9cf20b27e8c1e4d0 (diff) | |
download | rsyslog-199f01614ca45854a820878b5d0f91f729fc379c.tar.gz rsyslog-199f01614ca45854a820878b5d0f91f729fc379c.tar.bz2 rsyslog-199f01614ca45854a820878b5d0f91f729fc379c.zip |
cleanup
Diffstat (limited to 'tools/omfwd.c')
-rw-r--r-- | tools/omfwd.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/omfwd.c b/tools/omfwd.c index c7c3e32b..42311bcd 100644 --- a/tools/omfwd.c +++ b/tools/omfwd.c @@ -255,7 +255,6 @@ pData->bIsConnected = 0; // TODO: remove this variable altogether static inline void DestructTCPInstanceData(instanceData *pData) { -dbgprintf("DDDD: in DestructTCPInstanceData\n"); assert(pData != NULL); doZipFinish(pData); if(pData->pNetstrm != NULL) @@ -498,7 +497,6 @@ TCPSendBufCompressed(instanceData *pData, uchar *buf, unsigned len, sbool bIsFlu op = Z_SYNC_FLUSH; else op = Z_NO_FLUSH; -dbgprintf("DDDD: op: %d (SYNC_FLUSH %d)\n", op, Z_SYNC_FLUSH); /* run deflate() on buffer until everything has been compressed */ do { DBGPRINTF("omfwd: in deflate() loop, avail_in %d, total_in %ld, isFlush %d\n", pData->zstrm.avail_in, pData->zstrm.total_in, bIsFlush); @@ -608,7 +606,6 @@ static rsRetVal TCPSendPrepRetry(void *pvData) { DEFiRet; instanceData *pData = (instanceData *) pvData; -dbgprintf("TCPSendPrepRetry performs a DestructTCPInstanceData\n"); assert(pData != NULL); DestructTCPInstanceData(pData); |