Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: ca - fix compilation, fixes #2920
  • Loading branch information
perexg committed Jun 4, 2015
1 parent c38a615 commit f69ebde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_ca.c
Expand Up @@ -34,6 +34,7 @@
#include <linux/dvb/frontend.h>
#include <linux/dvb/ca.h>

#include "descrambler/caid.h"
#include "descrambler/dvbcam.h"

typedef enum {
Expand Down Expand Up @@ -491,7 +492,7 @@ linuxdvb_ca_ca_info_callback(void *arg, uint8_t slot_id, uint16_t session_num,
for(i=0; i< ca_id_count; i++) {
tvh_strlcatf(buf, sizeof(buf), c, " %04X", ca_ids[i]);
tvh_strlcatf(buf, sizeof(buf), c, " (%s)",
descrambler_caid2name(ca_ids[i]));
caid2name(ca_ids[i]));
}

tvhinfo("en50221", "CAM slot %u supported CAIDs: %s", slot_id, buf);
Expand Down

0 comments on commit f69ebde

Please sign in to comment.