summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-06-19 13:48:25 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-06-19 13:48:25 +0200
commit70ea2cbbd1d9b393486c01632716124ca7e55b27 (patch)
treeca6e13f07625da8ac8ca18608e72022cd0491055 /dvbdevice.c
parent425cb11d61c20f98f7167f1685fe8c5cd5f23ed0 (diff)
downloadvdr-70ea2cbbd1d9b393486c01632716124ca7e55b27.tar.gz
vdr-70ea2cbbd1d9b393486c01632716124ca7e55b27.tar.bz2
Fixed switching channels while an encrypted channel is being recorded (cont'd)1.3.11
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index 2f43bc8c..04af94b9 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.c 1.92 2004/06/19 08:52:24 kls Exp $
+ * $Id: dvbdevice.c 1.93 2004/06/19 13:48:00 kls Exp $
*/
#include "dvbdevice.h"
@@ -684,7 +684,7 @@ bool cDvbDevice::ProvidesChannel(const cChannel *Channel, int Priority, bool *Ne
if (dvbTuner->IsTunedTo(Channel)) {
if (Channel->Vpid() && !HasPid(Channel->Vpid()) || Channel->Apid1() && !HasPid(Channel->Apid1())) {
#ifdef DO_MULTIPLE_RECORDINGS
- if (Channel->Ca() > CACONFBASE)
+ if (Ca() > CACONFBASE || Channel->Ca() > CACONFBASE)
needsDetachReceivers = !ciHandler // only LL-firmware can do non-live CA channels
|| Ca() != Channel->Ca();
else if (!IsPrimaryDevice())