summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-09-09 15:10:11 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-09-09 15:10:11 +0200
commit099df13b6c39a9791bac814aa9501368d74e16c5 (patch)
treef4b4f639a951122b25bf0df7d73553a72d1b2de4
parent7115b3b97bc79a78e70406874a1ad2d641d0feef (diff)
downloadvdr-099df13b6c39a9791bac814aa9501368d74e16c5.tar.gz
vdr-099df13b6c39a9791bac814aa9501368d74e16c5.tar.bz2
Fixed the default value for "Setup/EPG bugfix level"
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY2
-rw-r--r--config.c4
3 files changed, 5 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index c5917c9c..c027b277 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -1395,6 +1395,7 @@ Ville Skyttä <ville.skytta@iki.fi>
for including the optional user defined Make.config from the 'libsi' Makefile
for making LIRC command parsing more robust
for fixing some typos in MANUAL
+ for reporting that the default value for "Setup/EPG bugfix level" was wrong
Steffen Beyer <cpunk@reactor.de>
for fixing setting the colored button help after deleting a recording in case the next
diff --git a/HISTORY b/HISTORY
index fba27d46..37b08c7d 100644
--- a/HISTORY
+++ b/HISTORY
@@ -3798,3 +3798,5 @@ Video Disk Recorder Revision History
languages in the two stereo channels, the audio channel is now properly set when
switching to such a channel (thanks to Mogens Elneff for his help in testing this).
- Fixed some typos in MANUAL (thanks to Ville Skyttä).
+- Fixed the default value for "Setup/EPG bugfix level" (thanks to Ville Skyttä for
+ reporting this one).
diff --git a/config.c b/config.c
index ed817e71..ecd91af2 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.137 2005/09/04 10:49:38 kls Exp $
+ * $Id: config.c 1.138 2005/09/09 15:08:59 kls Exp $
*/
#include "config.h"
@@ -267,7 +267,7 @@ cSetup::cSetup(void)
AudioLanguages[0] = -1;
EPGLanguages[0] = -1;
EPGScanTimeout = 5;
- EPGBugfixLevel = 2;
+ EPGBugfixLevel = 3;
EPGLinger = 0;
SVDRPTimeout = 300;
ZapTimeout = 3;