From a95c8a6bd20ed07722b8cef75f547c6e5550e68b Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Mon, 27 Mar 2000 01:36:48 +0000 Subject: [PATCH] increase buffer size --- pppd/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pppd/utils.c b/pppd/utils.c index 307fb56..f6aa287 100644 --- a/pppd/utils.c +++ b/pppd/utils.c @@ -17,7 +17,7 @@ * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -#define RCSID "$Id: utils.c,v 1.9 1999/09/08 01:13:46 masputra Exp $" +#define RCSID "$Id: utils.c,v 1.10 2000/03/27 01:36:48 paulus Exp $" #include #include @@ -555,7 +555,7 @@ logit(level, fmt, args) va_list args; { int n; - char buf[256]; + char buf[1024]; n = vslprintf(buf, sizeof(buf), fmt, args); syslog(level, "%s", buf); -- 2.39.2