summaryrefslogtreecommitdiff
path: root/eit.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2021-04-28 20:44:56 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2021-04-28 20:44:56 +0200
commit4a199fe4acba6da192c0fa5b847760ca65e2c365 (patch)
tree8e5ac12681f3412aaacfc9987a99313f12fc9d84 /eit.c
parent98fa6206ac8aaef4864a4de4ac2f14d821a3bd55 (diff)
downloadvdr-4a199fe4acba6da192c0fa5b847760ca65e2c365.tar.gz
vdr-4a199fe4acba6da192c0fa5b847760ca65e2c365.tar.bz2
Now using a separate fixed value for internal EPG linger time
Diffstat (limited to 'eit.c')
-rw-r--r--eit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/eit.c b/eit.c
index 404cd9dd..b06a1368 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 5.2 2021/04/04 11:06:30 kls Exp $
+ * $Id: eit.c 5.3 2021/04/28 20:44:56 kls Exp $
*/
// The various ways in which broadcasters handle (or screw up) their EPG:
@@ -133,7 +133,7 @@ cEIT::cEIT(cEitTablesHash &EitTablesHash, int Source, u_char Tid, const u_char *
bool Empty = true;
bool Modified = false;
- time_t LingerLimit = Now - Setup.EPGLinger * 60;
+ time_t LingerLimit = Now - EPG_LINGER_TIME;
time_t SegmentStart = 0; // these are actually "section" start/end times
time_t SegmentEnd = 0;
struct tm t = { 0 };