From a19363a91129c6b78a6873b9f822ad0cd58aae06 Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Wed, 17 Dec 1997 21:22:01 +0000 Subject: [PATCH] char filename[200] => char filename[MAXPATHLEN] Pointed out by: Theo de Raadt --- usr.sbin/ppp/systems.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/ppp/systems.c b/usr.sbin/ppp/systems.c index 5673add19acf..cb79087c6828 100644 --- a/usr.sbin/ppp/systems.c +++ b/usr.sbin/ppp/systems.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: systems.c,v 1.29 1997/12/15 20:21:47 brian Exp $ + * $Id: systems.c,v 1.30 1997/12/17 21:21:42 brian Exp $ * * TODO: */ @@ -232,7 +232,7 @@ ReadSystem(const char *name, const char *file, int doexec) int n, len; u_char olauth; char line[LINE_LEN]; - char filename[200]; + char filename[MAXPATHLEN]; int linenum; int argc; char **argv;