Fix incorrect CAID compare causing CW client to not work at all
Embarrassing...
This commit is contained in:
parent
6361f95aac
commit
bdb3e95818
1 changed files with 1 additions and 1 deletions
|
@ -1072,7 +1072,7 @@ cwc_table_input(struct th_descrambler *td, struct th_transport *t,
|
|||
return;
|
||||
|
||||
LIST_FOREACH(c, &st->st_caids, link) {
|
||||
if(cwc->cwc_caid != c->caid)
|
||||
if(cwc->cwc_caid == c->caid)
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue