summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-12-01 17:08:29 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2000-12-01 17:08:29 +0100
commitd2fec895294e5ea0b6cc3d68f4af5dbcc9259c09 (patch)
treee7b8007f4031d4435881604e6f0d378b861156e4 /config.c
parent79a353c8b9b42922c5a4cf193539c6de658a65d0 (diff)
downloadvdr-d2fec895294e5ea0b6cc3d68f4af5dbcc9259c09.tar.gz
vdr-d2fec895294e5ea0b6cc3d68f4af5dbcc9259c09.tar.bz2
Fixed saving the MarginStop setup parameter
Diffstat (limited to 'config.c')
-rw-r--r--config.c3
1 files changed, 2 insertions, 1 deletions
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);