summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-07-09 16:35:13 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-07-09 16:35:13 +0200
commitab40107149038898ef24479a6911d9cd7770a56c (patch)
tree7a4bd016dd56583263c63e10808859c6ef848ffc /tools
parent5221a1e42e16c8c39b48a4a1a18ee6322c38cd17 (diff)
parent9de685929e4c202d470e07ec28fda41a5efc8eaf (diff)
downloadrsyslog-ab40107149038898ef24479a6911d9cd7770a56c.tar.gz
rsyslog-ab40107149038898ef24479a6911d9cd7770a56c.tar.xz
rsyslog-ab40107149038898ef24479a6911d9cd7770a56c.zip
Merge branch 'v4-beta' into v4-devel
Conflicts: tests/nettester.c
Diffstat (limited to 'tools')
-rw-r--r--tools/omfwd.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/omfwd.c b/tools/omfwd.c
index 2966a5e4..e41e5b66 100644
--- a/tools/omfwd.c
+++ b/tools/omfwd.c
@@ -206,8 +206,6 @@ static rsRetVal UDPSend(instanceData *pData, char *msg, size_t len)
unsigned lsent = 0;
int bSendSuccess;
-dbgprintf("rebind logic: interval %d, curr %d, mod %d, if %d\n", pData->iUDPRebindInterval, pData->nXmit,
- (pData->nXmit % pData->iUDPRebindInterval), ((pData->nXmit % pData->iUDPRebindInterval) == 0));
if(pData->iUDPRebindInterval && (pData->nXmit++ % pData->iUDPRebindInterval == 0)) {
dbgprintf("omfwd dropping UDP 'connection' (as configured)\n");
pData->nXmit = 1; /* else we have an addtl wrap at 2^31-1 */