dbEvent: use filtered field log on post event queue

This commit is contained in:
Michael Davidsaver
2012-07-02 18:00:55 -04:00
parent b5c6c78c85
commit f1c0458adc
+6 -4
View File
@@ -931,11 +931,13 @@ static int event_read ( struct event_que *ev_que )
UNLOCKEVQUE (ev_que);
/* Run post-event-queue filter chain */
if (ellCount(&pevent->chan->post_chain)) {
dbChannelRunPostChain(pevent->chan, pfl);
pfl = dbChannelRunPostChain(pevent->chan, pfl);
}
if (pfl) {
/* Issue user callback */
( *user_sub ) ( pevent->user_arg, pevent->chan,
ev_que->evque[ev_que->getix] != EVENTQEMPTY, pfl );
}
/* Issue user callback */
( *user_sub ) ( pevent->user_arg, pevent->chan,
ev_que->evque[ev_que->getix] != EVENTQEMPTY, pfl );
LOCKEVQUE (ev_que);
/*