diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-05-25 12:44:07 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-05-25 12:44:07 +0200 |
commit | 6496d879e5e5de91507a807fbb136d15e3952e1c (patch) | |
tree | 8feca8363ca782bd20dad3860b78c57b030f021d /timers.c | |
parent | 2e01178e54eab038d26ecdce20014d5ad386d589 (diff) | |
download | vdr-6496d879e5e5de91507a807fbb136d15e3952e1c.tar.gz vdr-6496d879e5e5de91507a807fbb136d15e3952e1c.tar.bz2 |
Fixed calculating the start time of repeated timers with "first day"
Diffstat (limited to 'timers.c')
-rw-r--r-- | timers.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.c 1.59 2006/05/07 09:01:00 kls Exp $ + * $Id: timers.c 1.60 2006/05/25 12:32:11 kls Exp $ */ #include "timers.h" @@ -347,7 +347,7 @@ bool cTimer::Matches(time_t t, bool Directly, int Margin) const } else { for (int i = -1; i <= 7; i++) { - time_t t0 = IncDay(t, i); + time_t t0 = IncDay(day ? max(day, t) : t, i); if (DayMatches(t0)) { time_t a = SetTime(t0, begin); time_t b = a + length; @@ -359,7 +359,7 @@ bool cTimer::Matches(time_t t, bool Directly, int Margin) const } } if (!startTime) - startTime = day; // just to have something that's more than a week in the future + startTime = IncDay(t, 7); // just to have something that's more than a week in the future else if (!Directly && (t > startTime || t > day + SECSINDAY + 3600)) // +3600 in case of DST change day = 0; } |