summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-02-17 16:03:49 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-02-17 16:03:49 +0100
commit3db87e806caf5deef10918e58294774a291eb939 (patch)
treedf37900ceffc8111a1b5f56f177ae468059102fa /config.c
parentaaf792357da5d9aaa0f8f61da78daf12508a69c4 (diff)
downloadvdr-3db87e806caf5deef10918e58294774a291eb939.tar.gz
vdr-3db87e806caf5deef10918e58294774a291eb939.tar.bz2
Taking EPG data from 'start + 5min' for instant recordings
Diffstat (limited to 'config.c')
-rw-r--r--config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.c b/config.c
index 53b70262..2b363912 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.c 1.84 2002/02/17 11:37:05 kls Exp $
+ * $Id: config.c 1.85 2002/02/17 15:38:34 kls Exp $
*/
#include "config.h"
@@ -323,7 +323,7 @@ cTimer::cTimer(bool Instant)
{
startTime = stopTime = 0;
recording = pending = false;
- active = Instant;
+ active = Instant ? taActInst : taInactive;
cChannel *ch = Channels.GetByNumber(cDvbApi::CurrentChannel());
channel = ch ? ch->number : 0;
time_t t = time(NULL);