diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-10-24 14:45:01 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-10-24 14:45:01 +0200 |
commit | 205114176d08cf662faca67077598061404f0d24 (patch) | |
tree | 9dedd88fb4006fabb26ede07dff514cc635157a3 /runtime | |
parent | 1c4074259a1b9437ac7bd24b4e791dc98375209f (diff) | |
parent | bf1eef67ddfe16682d2733713ec0b2a3301840b9 (diff) | |
download | rsyslog-205114176d08cf662faca67077598061404f0d24.tar.gz rsyslog-205114176d08cf662faca67077598061404f0d24.tar.bz2 rsyslog-205114176d08cf662faca67077598061404f0d24.zip |
Merge branch 'v7-stable'
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/ruleset.c | 2 |
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 |