From: Paul Mackerras Date: Wed, 27 Dec 2000 23:25:55 +0000 (+0000) Subject: Increase the size of the buffer for option error messages X-Git-Tag: ppp-2.4.7~519 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=c7cc972ace58d999e0e4d31c169d8e40ed5dc587 Increase the size of the buffer for option error messages --- diff --git a/pppd/options.c b/pppd/options.c index c92e2dd..46097fb 100644 --- a/pppd/options.c +++ b/pppd/options.c @@ -17,7 +17,7 @@ * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -#define RCSID "$Id: options.c,v 1.76 2000/08/01 01:38:30 paulus Exp $" +#define RCSID "$Id: options.c,v 1.77 2000/12/27 23:25:55 paulus Exp $" #include #include @@ -821,7 +821,7 @@ void option_error __V((char *fmt, ...)) { va_list args; - char buf[256]; + char buf[1024]; #if defined(__STDC__) va_start(args, fmt);