From d2fec895294e5ea0b6cc3d68f4af5dbcc9259c09 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 1 Dec 2000 17:08:29 +0100 Subject: [PATCH] Fixed saving the MarginStop setup parameter --- HISTORY | 3 ++- config.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index 35faeded..b4310f0f 100644 --- a/HISTORY +++ b/HISTORY @@ -312,10 +312,11 @@ Video Disk Recorder Revision History an early state and may still cause some problems, but it appears to work nice already. -2000-11-26: Version 0.69 +2000-12-01: Version 0.69 - The EPG data is now dumped into the file /video/epg.data every ten minutes. Use the Perl script 'epg2html.pl' to convert the raw EPG data into a simple HTML programme listing. - Fixed handling of channel switching with the "Blue" button in the "What's on now/next?" menus. +- Fixed saving the MarginStop setup parameter. diff --git a/config.c b/config.c index 8964e5a0..b5134ae4 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.34 2000/11/18 13:26:36 kls Exp $ + * $Id: config.c 1.35 2000/12/01 16:53:48 kls Exp $ */ #include "config.h" @@ -792,6 +792,7 @@ bool cSetup::Save(const char *FileName) fprintf(f, "LnbFrequHi = %d\n", LnbFrequHi); fprintf(f, "SetSystemTime = %d\n", SetSystemTime); fprintf(f, "MarginStart = %d\n", MarginStart); + fprintf(f, "MarginStop = %d\n", MarginStop); fprintf(f, "EPGScanTimeout = %d\n", EPGScanTimeout); fclose(f); isyslog(LOG_INFO, "saved setup to %s", FileName);