summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorschmirl <schmirl>2009-10-19 06:19:10 +0000
committerschmirl <schmirl>2009-10-19 06:19:10 +0000
commite99ea0034859129b8593994d406924d42ae6aae6 (patch)
tree5de8d3892637797ff8bed61eec50901fd1e576f2 /client
parent73e30fd5ca1bf1c08e7ed45f24a87d977be64c0e (diff)
downloadvdr-plugin-streamdev-e99ea0034859129b8593994d406924d42ae6aae6.tar.gz
vdr-plugin-streamdev-e99ea0034859129b8593994d406924d42ae6aae6.tar.bz2
fixed regression from fix for switching between encrypted channels. It was
no longer possible to receive multiple (FTA) streams from the same transponder
Diffstat (limited to 'client')
-rw-r--r--client/device.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/client/device.c b/client/device.c
index 4b6c3c5..d7a09a6 100644
--- a/client/device.c
+++ b/client/device.c
@@ -1,5 +1,5 @@
/*
- * $Id: device.c,v 1.23 2009/04/06 06:48:59 schmirl Exp $
+ * $Id: device.c,v 1.24 2009/10/19 06:19:10 schmirl Exp $
*/
#include "client/device.h"
@@ -123,12 +123,10 @@ 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)
+ && Channel->Ca() == m_Channel->Ca())
return true;
-#endif
DetachAllReceivers();
m_Channel = Channel;