increase max line size from 1024 to 4096, hopefully

This commit is contained in:
tg
2003-04-12 14:32:14 +00:00
parent c3f3679ee8
commit 9a4f47c081
4 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,4 @@
/* $MirBSD: history.c,v 1.4 2003/04/12 14:32:14 tg Exp $ */
/* $OpenBSD: history.c,v 1.18 2003/04/06 23:39:17 deraadt Exp $ */
/*
@ -934,7 +935,7 @@ hist_shrink(oldbase, oldbytes)
int oldbytes;
{
int fd;
char nfile[1024];
char nfile[4096];
struct stat statb;
unsigned char *nbase = oldbase;
int nbytes = oldbytes;