summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-01-27 15:41:41 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-01-27 15:41:41 +0100
commit8ab2383e18139b8250ace271f4c73d75aae436a6 (patch)
treeb612f6ccf0e547c034ffdf74ddcbf83ee1b72a06 /timers.c
parentdd155f2aafcafabb856c983700285bb99bcfa720 (diff)
downloadvdr-8ab2383e18139b8250ace271f4c73d75aae436a6.tar.gz
vdr-8ab2383e18139b8250ace271f4c73d75aae436a6.tar.bz2
Fixed handling the tfRecording flag when reading timers
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 a168cc1d..e5fc8436 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.43 2006/01/15 13:31:11 kls Exp $
+ * $Id: timers.c 1.44 2006/01/27 15:35:17 kls Exp $
*/
#include "timers.h"
@@ -245,6 +245,7 @@ bool cTimer::Parse(const char *s)
}
bool result = false;
if (8 <= sscanf(s, "%u :%a[^:]:%a[^:]:%d :%d :%d :%d :%a[^:\n]:%a[^\n]", &flags, &channelbuffer, &daybuffer, &start, &stop, &priority, &lifetime, &filebuffer, &summary)) {
+ ClrFlags(tfRecording);
if (summary && !*skipspace(summary)) {
free(summary);
summary = NULL;