summaryrefslogtreecommitdiff
path: root/diseqc.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-01-09 13:18:15 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-01-09 13:18:15 +0100
commit0975bfc440e5ae986783c1b03b402440a3a2fd26 (patch)
tree0f27f39a8dd2cd3d4cf27b97317bcac7344306bf /diseqc.c
parente60ba0311bbcff5395ad8a8c1fb067f2e750477e (diff)
downloadvdr-0975bfc440e5ae986783c1b03b402440a3a2fd26.tar.gz
vdr-0975bfc440e5ae986783c1b03b402440a3a2fd26.tar.bz2
Added support for circular polarization
Diffstat (limited to 'diseqc.c')
-rw-r--r--diseqc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/diseqc.c b/diseqc.c
index 801e1cd8..bae59960 100644
--- a/diseqc.c
+++ b/diseqc.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: diseqc.c 1.3 2004/10/24 11:04:56 kls Exp $
+ * $Id: diseqc.c 1.4 2005/01/09 13:05:11 kls Exp $
*/
#include "diseqc.h"
@@ -37,7 +37,7 @@ bool cDiseqc::Parse(const char *s)
source = cSource::FromString(sourcebuf);
if (Sources.Get(source)) {
polarization = toupper(polarization);
- if (polarization == 'V' || polarization == 'H') {
+ if (polarization == 'V' || polarization == 'H' || polarization == 'L' || polarization == 'R') {
parsing = true;
char *CurrentAction = NULL;
while (Execute(&CurrentAction) != daNone)