diff options
author | Craig A. Berry <craigberry@mac.com> | 2001-11-09 12:13:16 -0600 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-10 01:42:29 +0000 |
commit | e43aec62759b84888e4899e6588939659c8b7301 (patch) | |
tree | 178b9748629256bc1e01866db10f2515b69d41d3 /vms | |
parent | d11311f770fa80ec2f800e1e2c3dae1c890fdd03 (diff) | |
download | perl-e43aec62759b84888e4899e6588939659c8b7301.tar.gz |
vms/munchconfig.c line length fix
Message-Id: <5.1.0.14.2.20011109180651.02b31d20@exchi01>
p4raw-id: //depot/perl@12924
Diffstat (limited to 'vms')
-rw-r--r-- | vms/munchconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vms/munchconfig.c b/vms/munchconfig.c index 82768db12c..ccbf638e0c 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 */ |