1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-05-09 13:42:09 -05:00

Oops - try increasing some more buffer sizes as well. Bah.

[originally from svn r2202]
This commit is contained in:
Simon Tatham 2002-11-08 09:19:47 +00:00
parent 52bb59be17
commit e05f560c21

View File

@ -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);