From 30aa3b0610f949205a96e6af40c34d808de0753f Mon Sep 17 00:00:00 2001 From: schmirl Date: Wed, 14 Jan 2009 07:35:51 +0000 Subject: [PATCH] Problem when switching between encrypted channels still exists if CA id is set to FTA or streamdev device. Disabled transponder check. --- client/device.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;