summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmirl <schmirl>2009-01-14 07:35:51 +0000
committerschmirl <schmirl>2009-01-14 07:35:51 +0000
commit30aa3b0610f949205a96e6af40c34d808de0753f (patch)
tree76065caa90c7ce63e8739633e008b5a937ae75ce
parentca043780a7d81b3766a42aa105eaaa3ff2c6bc70 (diff)
downloadvdr-plugin-streamdev-30aa3b0610f949205a96e6af40c34d808de0753f.tar.gz
vdr-plugin-streamdev-30aa3b0610f949205a96e6af40c34d808de0753f.tar.bz2
Problem when switching between encrypted channels still exists if CA id
is set to FTA or streamdev device. Disabled transponder check.
-rw-r--r--client/device.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/device.c b/client/device.c
index c9b53c3..4a2ccd1 100644
--- a/client/device.c
+++ b/client/device.c
@@ -1,5 +1,5 @@
/*
- * $Id: device.c,v 1.20 2008/10/02 06:56:36 schmirl Exp $
+ * $Id: device.c,v 1.21 2009/01/14 07:35:51 schmirl Exp $
*/
#include "client/device.h"
@@ -107,10 +107,12 @@ bool cStreamdevDevice::SetChannelDevice(const cChannel *Channel,
if (LiveView)
return false;
+#if 0
if (ClientSocket.DataSocket(siLive) != NULL
&& TRANSPONDER(Channel, m_Channel)
&& Channel->Ca() < CA_ENCRYPTED_MIN)
return true;
+#endif
DetachAllReceivers();
m_Channel = Channel;