summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-03-18 09:05:18 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-03-18 09:05:18 +0100
commitb6d407a212bf470f1a8518b6c184ff00b26202ee (patch)
tree1c612a8876372974a473c190778550792bc20c0c /config.c
parente724d871b27c0410cb39a41b4d74b84c54fb2be6 (diff)
downloadvdr-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.c b/config.c
index 3dc9fe84..7a153cb1 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 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;