summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-10-24 14:45:01 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-10-24 14:45:01 +0200
commit205114176d08cf662faca67077598061404f0d24 (patch)
tree9dedd88fb4006fabb26ede07dff514cc635157a3 /runtime
parent1c4074259a1b9437ac7bd24b4e791dc98375209f (diff)
parentbf1eef67ddfe16682d2733713ec0b2a3301840b9 (diff)
downloadrsyslog-205114176d08cf662faca67077598061404f0d24.tar.gz
rsyslog-205114176d08cf662faca67077598061404f0d24.tar.bz2
rsyslog-205114176d08cf662faca67077598061404f0d24.zip
Merge branch 'v7-stable'
Diffstat (limited to 'runtime')
-rw-r--r--runtime/ruleset.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/ruleset.c b/runtime/ruleset.c
index d2c21424..24d8279c 100644
--- a/runtime/ruleset.c
+++ b/runtime/ruleset.c
@@ -459,14 +459,12 @@ static void
execPROPFILT(struct cnfstmt *stmt, batch_t *pBatch, sbool *active)
{
sbool *thenAct;
- msg_t *pMsg;
sbool bRet;
int i;
thenAct = newActive(pBatch);
for(i = 0 ; i < batchNumMsgs(pBatch) && !*(pBatch->pbShutdownImmediate) ; ++i) {
if(pBatch->pElem[i].state == BATCH_STATE_DISC)
continue; /* will be ignored in any case */
- pMsg = (msg_t*)(pBatch->pElem[i].pUsrp);
if(active == NULL || active[i]) {
bRet = evalPROPFILT(stmt, (msg_t*)(pBatch->pElem[i].pUsrp));
} else