summaryrefslogtreecommitdiffstats
path: root/runtime/rule.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-06-09 15:37:00 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2010-06-09 15:37:00 +0200
commit8fbcea483710faae468ecf0ba706adc7e60ed41d (patch)
treebf69b277de872fc88a53fd2a43b9b21f48efd90d /runtime/rule.c
parent395660f462c62029f76b99f73bd9a424a8cf73a2 (diff)
downloadrsyslog-8fbcea483710faae468ecf0ba706adc7e60ed41d.tar.gz
rsyslog-8fbcea483710faae468ecf0ba706adc7e60ed41d.tar.xz
rsyslog-8fbcea483710faae468ecf0ba706adc7e60ed41d.zip
main msg q consumer now preprocesses messages before doing rule processing
things like ACL check and message parsing. This leads to a greater level of concurrent processing. Beware, though, that this commit duplicates some messages. May be a regression from this or an earlier commit. I will soon sort out.
Diffstat (limited to 'runtime/rule.c')
-rw-r--r--runtime/rule.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/rule.c b/runtime/rule.c
index 7a26a03a..3b98d7d1 100644
--- a/runtime/rule.c
+++ b/runtime/rule.c
@@ -166,7 +166,6 @@ shouldProcessThisMessage(rule_t *pRule, msg_t *pMsg, int *bProcessMsg)
}
}
-RUNLOG_VAR("%p", pRule->pCSProgNameComp);
if(pRule->pCSProgNameComp != NULL) {
int bInv = 0, bEqv = 0, offset = 0;
if(*(rsCStrGetSzStrNoNULL(pRule->pCSProgNameComp)) == '-') {