Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
descrambler: fix wrong brackets (fix FTA channel detection), fixes #3514
  • Loading branch information
perexg committed Jan 23, 2016
1 parent e85cad0 commit 9be8881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/descrambler/descrambler.c
Expand Up @@ -246,8 +246,8 @@ descrambler_service_start ( service_t *t )
if (!((mpegts_service_t *)t)->s_dvb_forcecaid) {

count = 0;
TAILQ_FOREACH(st, &t->s_filt_components, es_filt_link) {
LIST_FOREACH(ca, &st->es_caids, link)
TAILQ_FOREACH(st, &t->s_filt_components, es_filt_link)
LIST_FOREACH(ca, &st->es_caids, link) {
for (p = constcw_table; *p; p++)
if (ca->caid == *p) {
constcw = 1;
Expand Down

0 comments on commit 9be8881

Please sign in to comment.