summaryrefslogtreecommitdiff
path: root/eit.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-01-13 16:18:40 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-01-13 16:18:40 +0100
commit21f13f0ef178bf48e4b609e75e42e74f8e940fe8 (patch)
treefc48bf793a9dfc334820f8c10edd982d576351c0 /eit.c
parent08390642c8b1f8ab76e8c9322ab96b28aef9ae82 (diff)
downloadvdr-21f13f0ef178bf48e4b609e75e42e74f8e940fe8.tar.gz
vdr-21f13f0ef178bf48e4b609e75e42e74f8e940fe8.tar.bz2
Removed EPGBugfixLevel '3'
Diffstat (limited to 'eit.c')
-rw-r--r--eit.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/eit.c b/eit.c
index 370aba49..ed757d2c 100644
--- a/eit.c
+++ b/eit.c
@@ -16,7 +16,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: eit.c 1.30 2001/12/01 14:33:04 kls Exp $
+ * $Id: eit.c 1.31 2002/01/13 16:14:31 kls Exp $
***************************************************************************/
#include "eit.h"
@@ -473,22 +473,6 @@ void cEventInfo::FixEpgBugs(void)
strreplace(pTitle, '`', '\'');
strreplace(pSubtitle, '`', '\'');
strreplace(pExtendedDescription, '`', '\'');
-
- if (Setup.EPGBugfixLevel <= 2)
- return;
-
- // Pro7 and Kabel1 apparently are unable to use a calendar/clock,
- // because all events between 00:00 and 06:00 have the date of the
- // day before (sometimes even this correction doesn't help).
- // Channels are recognized by their ServiceID, which may only work
- // correctly on the ASTRA satellite system.
- if (uServiceID == 898 // Pro-7
- || uServiceID == 899) { // Kabel 1
- struct tm tm_r;
- tm *t = localtime_r(&tTime, &tm_r);
- if (t->tm_hour * 3600 + t->tm_min * 60 + t->tm_sec <= 6 * 3600)
- tTime += 24 * 3600;
- }
}
}