summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-02-08 09:24:55 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-02-08 09:24:55 +0100
commit7f66e1573e056b26598cb8d37b5f65fe7276eb25 (patch)
tree29d9d8b4e61d4d07ac4c901875785a1b4c25473b /config.c
parentb16437e7848218025986e87eb972b742dd7c958b (diff)
downloadvdr-7f66e1573e056b26598cb8d37b5f65fe7276eb25.tar.gz
vdr-7f66e1573e056b26598cb8d37b5f65fe7276eb25.tar.bz2
New command line option --dirnames
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 3335dfc2..b4228931 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.33 2013/02/02 13:44:33 kls Exp $
+ * $Id: config.c 2.34 2013/02/05 11:16:08 kls Exp $
*/
#include "config.h"
@@ -587,7 +587,7 @@ bool cSetup::Parse(const char *Name, const char *Value)
else if (!strcasecmp(Name, "MenuScrollWrap")) MenuScrollWrap = atoi(Value);
else if (!strcasecmp(Name, "MenuKeyCloses")) MenuKeyCloses = atoi(Value);
else if (!strcasecmp(Name, "MarkInstantRecord")) MarkInstantRecord = atoi(Value);
- else if (!strcasecmp(Name, "NameInstantRecord")) Utf8Strn0Cpy(NameInstantRecord, Value, MaxFileName);
+ else if (!strcasecmp(Name, "NameInstantRecord")) Utf8Strn0Cpy(NameInstantRecord, Value, sizeof(NameInstantRecord));
else if (!strcasecmp(Name, "InstantRecordTime")) InstantRecordTime = atoi(Value);
else if (!strcasecmp(Name, "LnbSLOF")) LnbSLOF = atoi(Value);
else if (!strcasecmp(Name, "LnbFrequLo")) LnbFrequLo = atoi(Value);