diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-10-13 09:08:40 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-10-13 09:08:40 +0200 |
commit | f7575cb9a81ed80848e21ea0cb31b6657f908f5d (patch) | |
tree | 9fdd7c132bf15b95c6c723d6871c5794ad41ecf9 /runtime | |
parent | 05b0c4322bbd7621762dc4b9b3a2e1baeabdaa1f (diff) | |
download | rsyslog-f7575cb9a81ed80848e21ea0cb31b6657f908f5d.tar.gz rsyslog-f7575cb9a81ed80848e21ea0cb31b6657f908f5d.tar.xz rsyslog-f7575cb9a81ed80848e21ea0cb31b6657f908f5d.zip |
added multi-ruleset support to imudp
also bumped version number and corrected ChangeLog, where I merged
some post 5.3.1 changes into the 5.3.1 section.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/ruleset.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/runtime/ruleset.c b/runtime/ruleset.c index 5ac9a8fd..0f4bc46d 100644 --- a/runtime/ruleset.c +++ b/runtime/ruleset.c @@ -46,8 +46,6 @@ #include "errmsg.h" #include "unicode-helper.h" -static rsRetVal debugPrintAll(void); // TODO: remove! - /* static data */ DEFobjStaticHelpers DEFobjCurrIf(errmsg) @@ -161,13 +159,10 @@ processMsg(msg_t *pMsg) CHKiRet(llExecFunc(&pThis->llRules, processMsgDoRules, pMsg)); finalize_it: - - //if(iRet == RS_RET_DISCARDMSG) - //iRet = RS_RET_OK; - RETiRet; } + /* Add a new rule to the end of the current rule set. We do a number * of checks and ignore the rule if it does not pass them. */ |