Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed stream guard card data length.
  • Loading branch information
sangood authored and perexg committed Aug 4, 2014
1 parent 2a09686 commit 592f851
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/descrambler/capmt.c
Expand Up @@ -1654,8 +1654,8 @@ capmt_send_request(capmt_service_t *ct, int lm)
cad.cad_length = 0x05;
cad.cad_data[4] = cce2->cce_providerid & 0xff;
} else if (cce2->cce_caid == 0x4ad2) {
cad.cad_length = 0x05;
cad.cad_data[4] = cce2->cce_providerid & 0xffffff;
cad.cad_length = 0x04;
cad.cad_data[3] = cce2->cce_providerid & 0xffffff;
}else
tvhlog(LOG_WARNING, "capmt", "Unknown CAID type, don't know where to put provider ID");
}
Expand Down

0 comments on commit 592f851

Please sign in to comment.