2003-12-03 Evgeny Fiksman <fike@bezeqint.net>

* src/frontend/terminal.c:
        Increase the buffer size for tgetent
This commit is contained in:
stefanjones 2003-12-15 12:23:06 +00:00
parent b2c674fe0f
commit 266a341fe0
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-12-03 Evgeny Fiksman <fike@bezeqint.net>
* src/frontend/terminal.c:
Increase the buffer size for tgetent
2003-12-03 Stefan Jones <stefan.jones@multigig.com>
* configure.in:

View File

@ -261,8 +261,8 @@ tcap_init(void)
{
char *s;
#ifdef HAVE_TERMCAP
char tbuf[1025];
static char buf2[100];
char tbuf[16384];
static char buf2[1024];
char *charbuf;
charbuf = buf2;