summaryrefslogtreecommitdiff
path: root/dvbapi.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-07-27 13:45:55 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-07-27 13:45:55 +0200
commit47b859c15677e73e2e0a0fef8f244a6b3fd6b3df (patch)
treebaf9b4b56d2f1e53984ad95897d47fa9e8942cf3 /dvbapi.c
parentd008680ad78832701d59d54733d302c0287bc879 (diff)
downloadvdr-47b859c15677e73e2e0a0fef8f244a6b3fd6b3df.tar.gz
vdr-47b859c15677e73e2e0a0fef8f244a6b3fd6b3df.tar.bz2
DiSEqC support can now be generally enabled/disabled
Diffstat (limited to 'dvbapi.c')
-rw-r--r--dvbapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbapi.c b/dvbapi.c
index 94efe50a..4fa5589d 100644
--- a/dvbapi.c
+++ b/dvbapi.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbapi.c 1.89 2001/07/27 11:43:16 kls Exp $
+ * $Id: dvbapi.c 1.90 2001/07/27 13:33:56 kls Exp $
*/
#include "dvbapi.h"
@@ -2170,7 +2170,7 @@ bool cDvbApi::SetChannel(int ChannelNumber, int FrequencyMHz, char Polarization,
scmds.voltage = volt;
scmds.miniCommand = SEC_MINI_NONE;
scmds.continuousTone = tone;
- scmds.numCommands = Diseqc ? 1 : 0;
+ scmds.numCommands = Setup.DiSEqC ? 1 : 0;
scmds.commands = &scmd;
CHECK(ioctl(fd_sec, SEC_SEND_SEQUENCE, &scmds));