Only check msb byte in caid
This commit is contained in:
parent
0dc6e8e503
commit
2056c0544b
1 changed files with 1 additions and 1 deletions
|
@ -547,7 +547,7 @@ cwc_decode_card_data_reply(cwc_t *cwc, uint8_t *msg, int len)
|
|||
if (!emm_allowed)
|
||||
tvhlog(LOG_INFO, "cwc", "%s: Will not forward EMMs (not allowed by server)",
|
||||
cwc->cwc_hostname);
|
||||
else if (cwc->cwc_caid != 0x0b00)
|
||||
else if ((cwc->cwc_caid>>8) != 0x0b)
|
||||
tvhlog(LOG_INFO, "cwc", "%s: Will not forward EMMs (unsupported ca system)",
|
||||
cwc->cwc_hostname);
|
||||
else {
|
||||
|
|
Loading…
Add table
Reference in a new issue