Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
descrambler: fix constcw copy-and-paste error
  • Loading branch information
perexg committed Nov 18, 2015
1 parent 351042f commit c8fcc70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/descrambler/descrambler.c
Expand Up @@ -248,7 +248,7 @@ descrambler_service_start ( service_t *t )
count = 0;
TAILQ_FOREACH(st, &t->s_filt_components, es_filt_link) {
LIST_FOREACH(ca, &st->es_caids, link)
for (p = quick_ecm_table; *p; p++)
for (p = constcw_table; *p; p++)
if (ca->caid == *p) {
constcw = 1;
break;
Expand Down

0 comments on commit c8fcc70

Please sign in to comment.