Make buf in authflags a little bigger because 2 strings can be

concatenated and 20 bytes (the old size) is kind of tight.
This commit is contained in:
Gary Jennejohn 1999-02-28 22:19:47 +00:00
parent 0ee81fe5f5
commit f439d9fab7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44345

View File

@ -26,7 +26,7 @@
#ifndef lint
static const char rcsid[] =
"$Id: spppcontrol.c,v 1.4 1998/08/03 06:24:59 charnier Exp $";
"$Id: spppcontrol.c,v 1.5 1999/02/23 21:47:05 gj Exp $";
#endif /* not lint */
#include <sys/param.h>
@ -231,7 +231,7 @@ proto_name(u_short proto)
const char *
authflags(u_short flags)
{
static char buf[20];
static char buf[30];
buf[0] = '\0';
if (flags & AUTHFLAG_NOCALLOUT)
strcat(buf, " callin");