diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2018-02-03 12:59:56 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2018-02-03 12:59:56 +0100 |
commit | c441a634a5c2790849e8b87fb3eee86b29569c7b (patch) | |
tree | 47f984520a6b15670b536d067c9d8e68c50eb2c4 /ci.c | |
parent | c71c3115cca09935b4b6770311958cb7ac8ce9f4 (diff) | |
download | vdr-c441a634a5c2790849e8b87fb3eee86b29569c7b.tar.gz vdr-c441a634a5c2790849e8b87fb3eee86b29569c7b.tar.bz2 |
Limited some CAM related log messages to the actual master CAM, if any
Diffstat (limited to 'ci.c')
-rw-r--r-- | ci.c | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: ci.c 4.19 2018/01/28 11:14:40 kls Exp $ + * $Id: ci.c 4.20 2018/02/03 12:55:03 kls Exp $ */ #include "ci.h" @@ -306,7 +306,7 @@ void cCaActivationReceiver::Receive(const uchar *Data, int Length) if (TsIsScrambled(Data)) lastScrambledTime = Now; else if (Now - lastScrambledTime > UNSCRAMBLE_TIME) { - dsyslog("CAM %d: activated!", camSlot->SlotNumber()); + dsyslog("CAM %d: activated!", camSlot->MasterSlotNumber()); Skins.QueueMessage(mtInfo, tr("CAM activated!")); cDevice *d = Device(); Detach(); @@ -1138,10 +1138,12 @@ void cCiConditionalAccessSupport::Process(int Length, const uint8_t *Data) case AOT_CA_PMT_REPLY: { dbgprotocol("Slot %d: <== Ca Pmt Reply (%d)", CamSlot()->SlotNumber(), SessionId()); if (!repliesToQuery) { - dsyslog("CAM %d: replies to QUERY - multi channel decryption (MCD) possible", CamSlot()->SlotNumber()); + if (CamSlot()->IsMasterSlot()) + dsyslog("CAM %d: replies to QUERY - multi channel decryption (MCD) possible", CamSlot()->SlotNumber()); repliesToQuery = true; if (CamSlot()->MtdAvailable()) { - dsyslog("CAM %d: supports multi transponder decryption (MTD)", CamSlot()->SlotNumber()); + if (CamSlot()->IsMasterSlot()) + dsyslog("CAM %d: supports multi transponder decryption (MTD)", CamSlot()->SlotNumber()); CamSlot()->MtdActivate(true); } } |