summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-05-25 14:38:04 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-05-25 14:38:04 +0200
commitae37eae8e368823a0b6ca462e31ea70b14135b63 (patch)
tree0ab5aeb7b1088a5306db0932c6f25d4d1fda4444 /timers.c
parent6496d879e5e5de91507a807fbb136d15e3952e1c (diff)
downloadvdr-ae37eae8e368823a0b6ca462e31ea70b14135b63.tar.gz
vdr-ae37eae8e368823a0b6ca462e31ea70b14135b63.tar.bz2
Now setting a timer's cached start time to 0 after a call to Skip()
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/timers.c b/timers.c
index 0989dad1..15fbdd8e 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.60 2006/05/25 12:32:11 kls Exp $
+ * $Id: timers.c 1.61 2006/05/25 14:36:37 kls Exp $
*/
#include "timers.h"
@@ -560,6 +560,7 @@ bool cTimer::HasFlags(uint Flags) const
void cTimer::Skip(void)
{
day = IncDay(SetTime(StartTime(), 0), 1);
+ startTime = 0;
SetEvent(NULL);
}