From cfab3380c7cdedbd4dccd9ade156e0f58ec0ce30 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Thu, 5 May 2005 13:55:12 +0200 Subject: Now also considering the "EPG linger time" when saving the EPG data to file or listing it via LSTE --- epg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epg.c') diff --git a/epg.c b/epg.c index 9446073c..21bdeb5b 100644 --- a/epg.c +++ b/epg.c @@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider and Rolf Hakenes . * - * $Id: epg.c 1.28 2005/05/05 12:37:15 kls Exp $ + * $Id: epg.c 1.29 2005/05/05 13:53:19 kls Exp $ */ #include "epg.h" @@ -223,7 +223,7 @@ cString cEvent::GetVpsString(void) const void cEvent::Dump(FILE *f, const char *Prefix) const { - if (startTime + duration >= time(NULL)) { + if (startTime + duration + Setup.EPGLinger * 60 >= time(NULL)) { fprintf(f, "%sE %u %ld %d %X\n", Prefix, eventID, startTime, duration, tableID); if (!isempty(title)) fprintf(f, "%sT %s\n", Prefix, title); -- cgit v1.2.3