diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-17 09:42:03 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-17 09:42:03 +0000 |
commit | 83c6a060be679722cefc531eaec40771ba5a3f21 (patch) | |
tree | cce8747ddb453151d478115f0da284114cc0a0cc /modules.c | |
parent | b5d69df3af01cf722f11c560c67cfa6b2b7cf765 (diff) | |
download | rsyslog-83c6a060be679722cefc531eaec40771ba5a3f21.tar.gz rsyslog-83c6a060be679722cefc531eaec40771ba5a3f21.tar.xz rsyslog-83c6a060be679722cefc531eaec40771ba5a3f21.zip |
implemented $MarkMessagePeriod config directive
Diffstat (limited to 'modules.c')
-rw-r--r-- | modules.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -259,6 +259,7 @@ rsRetVal doModInit(rsRetVal (*modInit)(int, int*, rsRetVal(**)(), rsRetVal(*)()) CHKiRet((*pNew->modQueryEtryPt)((uchar*)"getTermSyncType", &modGetTermSyncType)); CHKiRet((iRet = (*modGetTermSyncType)(&pNew->mod.im.eTermSyncType)) != RS_RET_OK); CHKiRet((*pNew->modQueryEtryPt)((uchar*)"runInput", &pNew->mod.im.runInput)); + CHKiRet((*pNew->modQueryEtryPt)((uchar*)"willRun", &pNew->mod.im.willRun)); break; case eMOD_OUT: CHKiRet((*pNew->modQueryEtryPt)((uchar*)"doAction", &pNew->mod.om.doAction)); |