From: Craig A. Berry Date: Fri, 9 Nov 2001 18:13:16 +0000 (-0600) Subject: vms/munchconfig.c line length fix X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e43aec62759b84888e4899e6588939659c8b7301;p=p5sagit%2Fp5-mst-13.2.git vms/munchconfig.c line length fix Message-Id: <5.1.0.14.2.20011109180651.02b31d20@exchi01> p4raw-id: //depot/perl@12924 --- diff --git a/vms/munchconfig.c b/vms/munchconfig.c index 82768db..ccbf638 100644 --- a/vms/munchconfig.c +++ b/vms/munchconfig.c @@ -30,7 +30,7 @@ #endif /* The biggest line we can read in from a file */ -#define LINEBUFFERSIZE 400 +#define LINEBUFFERSIZE 1024 #define NUMTILDESUBS 30 #define NUMCONFIGSUBS 1000 #define TOKENBUFFERSIZE 80 @@ -78,7 +78,7 @@ main(int argc, char *argv[]) /* Any tag/value pairs on the command line? */ if (argc > 3) { int i; - char WorkString[80]; + char WorkString[LINEBUFFERSIZE]; for (i=3; i < argc && argv[i]; i++) { /* Local copy */