diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2011-06-16 15:17:48 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2011-06-16 15:17:48 +0200 |
commit | 90f8c7300495da9b61e4706be652c612fccc084f (patch) | |
tree | 47c6065cf8f2dcd9cfb6b0059f6a0d613b00cfa7 /tools | |
parent | 1b9dffd5501807af9472a12c702aa582b23fca96 (diff) | |
download | rsyslog-90f8c7300495da9b61e4706be652c612fccc084f.tar.gz rsyslog-90f8c7300495da9b61e4706be652c612fccc084f.tar.xz rsyslog-90f8c7300495da9b61e4706be652c612fccc084f.zip |
bugfix: problems in failover action handling
closes: http://bugzilla.adiscon.com/show_bug.cgi?id=270 (not yet confirmed!)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c index 487ab364..096f9309 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -799,7 +799,7 @@ DEFFUNC_llExecFunc(flushRptdMsgsActions) DBGPRINTF("flush %s: repeated %d times, %d sec.\n", module.GetStateName(pAction->pMod), pAction->f_prevcount, repeatinterval[pAction->f_repeatcount]); - actionWriteToAction(pAction, NULL, 0); + actionWriteToAction(pAction); BACKOFF(pAction); } UnlockObj(pAction); |