Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
service: esfilter - set CA use flag also for skipped types
  • Loading branch information
perexg committed Jul 31, 2014
1 parent 45492bf commit ea7a93b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/service.c
Expand Up @@ -381,8 +381,11 @@ service_build_filter(service_t *t)
mask = esfilterclsmask[i];
if (TAILQ_EMPTY(&esfilters[i])) {
TAILQ_FOREACH(st, &t->s_components, es_link) {
if ((mask & SCT_MASK(st->es_type)) != 0)
if ((mask & SCT_MASK(st->es_type)) != 0) {
service_build_filter_add(t, st, sta, &p);
LIST_FOREACH(ca, &st->es_caids, link)
ca->use = 1;
}
}
continue;
}
Expand Down

0 comments on commit ea7a93b

Please sign in to comment.