summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-03-11 11:07:59 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-03-11 11:07:59 +0100
commitbc72b7e6cd2468a9f8daea34dba524d81d60702f (patch)
tree6e2c7b4af8496a65acbb577e6e3af30b0be4e361 /config.h
parentf3ca6f2083229732d78ce6920f880fb6113e0c97 (diff)
downloadvdr-bc72b7e6cd2468a9f8daea34dba524d81d60702f.tar.gz
vdr-bc72b7e6cd2468a9f8daea34dba524d81d60702f.tar.bz2
Fixed using PATH_MAX and NAME_MAX (+/-1 because the first one includes the terminating 0, while the latter doesn't)
Diffstat (limited to 'config.h')
-rw-r--r--config.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.h b/config.h
index 5e1e3ff5..f7b3795f 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 2.72 2013/03/10 15:52:11 kls Exp $
+ * $Id: config.h 2.74 2013/03/11 11:07:59 kls Exp $
*/
#ifndef __CONFIG_H
@@ -27,8 +27,8 @@
// The plugin API's version number:
-#define APIVERSION "1.7.40"
-#define APIVERSNUM 10740 // Version * 10000 + Major * 100 + Minor
+#define APIVERSION "1.7.41"
+#define APIVERSNUM 10741 // Version * 10000 + Major * 100 + Minor
// When loading plugins, VDR searches them by their APIVERSION, which
// may be smaller than VDRVERSION in case there have been no changes to
@@ -260,7 +260,7 @@ public:
int MenuScrollWrap;
int MenuKeyCloses;
int MarkInstantRecord;
- char NameInstantRecord[NAME_MAX];
+ char NameInstantRecord[NAME_MAX + 1];
int InstantRecordTime;
int LnbSLOF;
int LnbFrequLo;