diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-03-18 09:05:18 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-03-18 09:05:18 +0100 |
commit | b6d407a212bf470f1a8518b6c184ff00b26202ee (patch) | |
tree | 1c612a8876372974a473c190778550792bc20c0c /config.c | |
parent | e724d871b27c0410cb39a41b4d74b84c54fb2be6 (diff) | |
download | vdr-b6d407a212bf470f1a8518b6c184ff00b26202ee.tar.gz vdr-b6d407a212bf470f1a8518b6c184ff00b26202ee.tar.bz2 |
Fixed loading the setup.conf file in case a parameter contains the '#' character
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 2.37 2013/03/10 14:56:51 kls Exp $ + * $Id: config.c 2.38 2013/03/18 08:57:50 kls Exp $ */ #include "config.h" @@ -518,7 +518,7 @@ void cSetup::Store(const char *Name, double &Value, const char *Plugin) bool cSetup::Load(const char *FileName) { - if (cConfig<cSetupLine>::Load(FileName, true)) { + if (cConfig<cSetupLine>::Load(FileName)) { bool result = true; for (cSetupLine *l = First(); l; l = Next(l)) { bool error = false; |