From 266a341fe0917ad252ec4b6fc838ff5d1445fa99 Mon Sep 17 00:00:00 2001 From: stefanjones Date: Mon, 15 Dec 2003 12:23:06 +0000 Subject: [PATCH] 2003-12-03 Evgeny Fiksman * src/frontend/terminal.c: Increase the buffer size for tgetent --- ChangeLog | 5 +++++ src/frontend/terminal.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0a1679ce6..47165eda4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-12-03 Evgeny Fiksman + + * src/frontend/terminal.c: + Increase the buffer size for tgetent + 2003-12-03 Stefan Jones * configure.in: diff --git a/src/frontend/terminal.c b/src/frontend/terminal.c index 13cbaa387..97254ef00 100644 --- a/src/frontend/terminal.c +++ b/src/frontend/terminal.c @@ -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;