summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-12-01 11:26:24 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2011-12-01 11:26:24 +0100
commitcb0087ec4736089d73d0368e683b652013483a52 (patch)
tree171c1fca8b7cf2dbb1428bf0cdb428c10bdc577c /action.c
parenteae869a3a4f2ea4c3bf4f54a9b1b61f00fc24f38 (diff)
parent9859818eccb27a330537258d9149c7c5f32292f6 (diff)
downloadrsyslog-cb0087ec4736089d73d0368e683b652013483a52.tar.gz
rsyslog-cb0087ec4736089d73d0368e683b652013483a52.tar.xz
rsyslog-cb0087ec4736089d73d0368e683b652013483a52.zip
Merge branch 'v3-stable' into v4-stable
Diffstat (limited to 'action.c')
-rw-r--r--action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/action.c b/action.c
index 119bb3ba..f2e58cdf 100644
--- a/action.c
+++ b/action.c
@@ -391,7 +391,7 @@ static rsRetVal actionTryResume(action_t *pThis)
time(&ttNow); /* cache "now" */
/* first check if it is time for a re-try */
- if(ttNow > pThis->ttResumeRtry) {
+ if(ttNow >= pThis->ttResumeRtry) {
iRet = pThis->pMod->tryResume(pThis->pModData);
if(iRet == RS_RET_SUSPENDED) {
/* set new tryResume time */