summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-01-13 12:37:19 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2001-01-13 12:37:19 +0100
commit5dacc491e31923360ea298230cdb5dd8d9773a46 (patch)
treeeeb92a04f1147319015127c0afc264225d948b56 /config.c
parent7bfaab70e240461ad4e8ca25d94e24c6f56b29e1 (diff)
downloadvdr-5dacc491e31923360ea298230cdb5dd8d9773a46.tar.gz
vdr-5dacc491e31923360ea298230cdb5dd8d9773a46.tar.bz2
Changed the value for Diseqc to '0' in the default 'channels.conf'
Diffstat (limited to 'config.c')
-rw-r--r--config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.c b/config.c
index 7da5b1b4..781900d7 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.c 1.36 2001/01/13 11:30:08 kls Exp $
+ * $Id: config.c 1.37 2001/01/13 12:36:32 kls Exp $
*/
#include "config.h"
@@ -196,7 +196,7 @@ cChannel::cChannel(const cChannel *Channel)
strcpy(name, Channel ? Channel->name : "Pro7");
frequency = Channel ? Channel->frequency : 12480;
polarization = Channel ? Channel->polarization : 'v';
- diseqc = Channel ? Channel->diseqc : 1;
+ diseqc = Channel ? Channel->diseqc : 0;
srate = Channel ? Channel->srate : 27500;
vpid = Channel ? Channel->vpid : 255;
apid = Channel ? Channel->apid : 256;