summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-02-13 15:50:26 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-02-13 15:50:26 +0100
commit06d53423935ca57269e6cd577f3482cceb2b9205 (patch)
tree219a173d6e6d88db64f33d789abc4000fafe5b9d /timers.c
parent30d262fa8871771ceca38828f52d8441c4d62743 (diff)
downloadvdr-06d53423935ca57269e6cd577f3482cceb2b9205.tar.gz
vdr-06d53423935ca57269e6cd577f3482cceb2b9205.tar.bz2
Fixed transponder handling to make it work with satellites that provide two transponders on the same frequency, with different polarization
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/timers.c b/timers.c
index 1db88a0f..74f36391 100644
--- a/timers.c
+++ b/timers.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: timers.c 1.8 2003/12/27 13:10:04 kls Exp $
+ * $Id: timers.c 1.9 2004/02/13 15:37:49 kls Exp $
*/
#include "timers.h"
@@ -219,7 +219,7 @@ bool cTimer::Parse(const char *s)
if (isnumber(channelbuffer))
channel = Channels.GetByNumber(atoi(channelbuffer));
else
- channel = Channels.GetByChannelID(tChannelID::FromString(channelbuffer), true);
+ channel = Channels.GetByChannelID(tChannelID::FromString(channelbuffer), true, true);
if (!channel) {
esyslog("ERROR: channel %s not defined", channelbuffer);
result = false;