summaryrefslogtreecommitdiff
path: root/tools.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools.c')
-rw-r--r--tools.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools.c b/tools.c
index f51bc85d..0adf03e2 100644
--- a/tools.c
+++ b/tools.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.c 1.43 2001/08/26 15:45:41 kls Exp $
+ * $Id: tools.c 1.44 2001/09/14 14:35:37 kls Exp $
*/
#define _GNU_SOURCE
@@ -21,8 +21,6 @@
#include <unistd.h>
#include "i18n.h"
-#define MaxBuffer 1000
-
int SysLogLevel = 3;
ssize_t safe_read(int filedes, void *buffer, size_t size)
@@ -56,7 +54,7 @@ void writechar(int filedes, char c)
char *readline(FILE *f)
{
- static char buffer[MaxBuffer];
+ static char buffer[MAXPARSEBUFFER];
if (fgets(buffer, sizeof(buffer), f) > 0) {
int l = strlen(buffer) - 1;
if (l >= 0 && buffer[l] == '\n')