From: Paul Mackerras Date: Mon, 27 Mar 2000 01:36:48 +0000 (+0000) Subject: increase buffer size X-Git-Tag: ppp-2.4.7~561 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=a95c8a6bd20ed07722b8cef75f547c6e5550e68b increase buffer size --- 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);