summaryrefslogtreecommitdiff
path: root/dvbdevice.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-06-27 10:24:46 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2020-06-27 10:24:46 +0200
commita526eee1651ca643a3f3c88a0c852a43261a7ebb (patch)
treecba7a2f1b987c041e3a17966e228566a8f459bf6 /dvbdevice.h
parent848c65fe4f56b95bf26035296f77b091a16ae704 (diff)
downloadvdr-a526eee1651ca643a3f3c88a0c852a43261a7ebb.tar.gz
vdr-a526eee1651ca643a3f3c88a0c852a43261a7ebb.tar.bz2
Fixed the 'else if' branch in cDevice::GetDeviceForTransponder(), which hasn't been active since version 1.7.292.4.3
Diffstat (limited to 'dvbdevice.h')
-rw-r--r--dvbdevice.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/dvbdevice.h b/dvbdevice.h
index 4e8f82ee..b7d899d5 100644
--- a/dvbdevice.h
+++ b/dvbdevice.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.h 4.6 2019/03/10 12:01:15 kls Exp $
+ * $Id: dvbdevice.h 4.7 2020/06/27 10:24:46 kls Exp $
*/
#ifndef __DVBDEVICE_H
@@ -179,6 +179,7 @@ public:
///< Returns true if any devices are available.
protected:
int adapter, frontend;
+ virtual bool IsBonded(void) const { return bondedDevice; }
private:
int fd_dvr, fd_ca;
bool checkTsBuffer;