diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-17 14:34:22 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-17 14:34:22 +0000 |
commit | 653ec62b23346eaab4f2f3830eeb7f1634a924c5 (patch) | |
tree | bea302747c51827905f2c8fc7eb8e4e243474149 /modules.c | |
parent | 8132d66186c8c08c44bb3504cb91e2e12bee11c1 (diff) | |
download | rsyslog-653ec62b23346eaab4f2f3830eeb7f1634a924c5.tar.gz rsyslog-653ec62b23346eaab4f2f3830eeb7f1634a924c5.tar.xz rsyslog-653ec62b23346eaab4f2f3830eeb7f1634a924c5.zip |
- implemented afterRun input module interface function
- implemented $klogSymbolsTwice config directive
Diffstat (limited to 'modules.c')
-rw-r--r-- | modules.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -260,6 +260,7 @@ rsRetVal doModInit(rsRetVal (*modInit)(int, int*, rsRetVal(**)(), rsRetVal(*)()) 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)); + CHKiRet((*pNew->modQueryEtryPt)((uchar*)"afterRun", &pNew->mod.im.afterRun)); break; case eMOD_OUT: CHKiRet((*pNew->modQueryEtryPt)((uchar*)"doAction", &pNew->mod.om.doAction)); |