Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > 7c4d4976e59a7f66b843e2b8bfc60b60 > files > 4

libtermcap-2.0.8-53.mga3.src.rpm

--- termcap-2.0.8/termcap.c.bufsize	Sat Aug 21 12:47:29 1999
+++ termcap-2.0.8/termcap.c	Sat Aug 21 12:52:36 1999
@@ -46,7 +46,10 @@
 speed_t ospeed;
 int tputs_baud_rate;
 char PC;
-int tgetent_bufsize = 1024;
+#if !defined(TGETENT_BUFSIZE)
+#define	TGETENT_BUFSIZE	1536	/* XXX used to be 1024 */
+#endif
+int tgetent_bufsize = TGETENT_BUFSIZE;
 
 /* We store a terminal description in a linked list. */
 struct tc_ent {
@@ -692,7 +695,7 @@
 /*ARGSUSED*/
 int main(int argc, char **argv)
 {
-  char buf[1024];
+  char buf[TGETENT_BUFSIZE];
   char *s;
   char *ts;