From 22ecf049b634ccd507ed0587526599ed1971c308 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 2 Jul 2001 17:32:40 +0000 Subject: Per patch from vodz, change a couple of consts to defines, since apparently gcc 2.95.4, at least, is too stupid to realize that a "static const int" is in fact a constant. --- sysklogd/syslogd.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sysklogd/syslogd.c') diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 8d8bd1afe..89f5348ec 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c @@ -387,7 +387,9 @@ static void domark(int sig) } } -static const int BUFSIZE = 1023; +/* This must be a #define, since when DODEBUG and BUFFERS_GO_IN_BSS are + * enabled, we otherwise get a "storage size isn't constant error. */ +#define BUFSIZE 1023 static int serveConnection (int conn) { RESERVE_BB_BUFFER(tmpbuf, BUFSIZE + 1); -- cgit v1.2.3