]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Oops - try increasing some more buffer sizes as well. Bah.
authorSimon Tatham <anakin@pobox.com>
Fri, 8 Nov 2002 09:19:47 +0000 (09:19 +0000)
committerSimon Tatham <anakin@pobox.com>
Fri, 8 Nov 2002 09:19:47 +0000 (09:19 +0000)
[originally from svn r2202]

window.c

index 9ea6c018a0409e76bb006a220c13c1b57748d42d..a88840969482c855dae66734dc39ee8e3ee7c521 100644 (file)
--- a/window.c
+++ b/window.c
@@ -846,7 +846,7 @@ void set_raw_mouse_mode(int activate)
 void connection_fatal(char *fmt, ...)
 {
     va_list ap;
-    char stuff[200];
+    char stuff[512];
 
     va_start(ap, fmt);
     vsprintf(stuff, fmt, ap);
@@ -866,7 +866,7 @@ void connection_fatal(char *fmt, ...)
 void cmdline_error(char *fmt, ...)
 {
     va_list ap;
-    char stuff[200];
+    char stuff[512];
 
     va_start(ap, fmt);
     vsprintf(stuff, fmt, ap);
@@ -4192,7 +4192,7 @@ void optimised_move(int to, int from, int lines)
 void fatalbox(char *fmt, ...)
 {
     va_list ap;
-    char stuff[200];
+    char stuff[512];
 
     va_start(ap, fmt);
     vsprintf(stuff, fmt, ap);