summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-07-22 09:25:11 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-07-22 09:25:11 +0200
commite9a90f7972087c7cf1ba4aee9ee19d6d66c42169 (patch)
treefa8edabe02c7723381ddaeaa72e80c0992815e0e
parentc4743d1d26f01db04c6deceabd4d3875476c8e39 (diff)
downloadvdr-e9a90f7972087c7cf1ba4aee9ee19d6d66c42169.tar.gz
vdr-e9a90f7972087c7cf1ba4aee9ee19d6d66c42169.tar.bz2
cEIT::cEIT() now calls pSchedule->SetPresentSeen() even if OnlyRunningStatus is true
-rw-r--r--HISTORY2
-rw-r--r--eit.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index 9debcb4f..fdb7d2f7 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4814,3 +4814,5 @@ Video Disk Recorder Revision History
- Removed a double fdopen() in cPipe::Open() (reported by Stefan Huelswitt).
- Fixed handling the running status of EPG events before the currently running one,
in case they are added after the current event.
+- cEIT::cEIT() now calls pSchedule->SetPresentSeen() even if OnlyRunningStatus is
+ true.
diff --git a/eit.c b/eit.c
index d92eb9b2..d9714ef8 100644
--- a/eit.c
+++ b/eit.c
@@ -8,7 +8,7 @@
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
* Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>.
*
- * $Id: eit.c 1.118 2006/05/25 14:53:15 kls Exp $
+ * $Id: eit.c 1.119 2006/07/22 09:21:59 kls Exp $
*/
#include "eit.h"
@@ -253,10 +253,10 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data, bo
if (Empty && Tid == 0x4E && getSectionNumber() == 0)
// ETR 211: an empty entry in section 0 of table 0x4E means there is currently no event running
pSchedule->ClrRunningStatus(channel);
- if (OnlyRunningStatus)
- return;
if (Tid == 0x4E)
pSchedule->SetPresentSeen();
+ if (OnlyRunningStatus)
+ return;
if (Modified) {
pSchedule->Sort();
if (!HasExternalData)