Fix incorrect CAID compare causing CW client to not work at all

Embarrassing...
This commit is contained in:
Andreas Öman 2010-03-21 09:14:21 +00:00
parent 6361f95aac
commit bdb3e95818

View file

@ -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;
}