Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
descrambler: fix the FTA check
  • Loading branch information
perexg committed Nov 8, 2015
1 parent 81dc8c8 commit f5fb388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/descrambler/descrambler.c
Expand Up @@ -224,7 +224,7 @@ descrambler_service_start ( service_t *t )
if (!((mpegts_service_t *)t)->s_dvb_forcecaid) {

TAILQ_FOREACH(st, &t->s_filt_components, es_filt_link)
if (LIST_FIRST(&st->es_caids) == NULL)
if (LIST_FIRST(&st->es_caids) != NULL)
break;

/* Do not run descrambler on FTA channels */
Expand Down

0 comments on commit f5fb388

Please sign in to comment.