From 9d58830c3fea19ee316a947864f5e73bb1770c7f Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 26 Nov 2002 19:35:40 +0000 Subject: [PATCH] Increase the size of the `font' buffer in the Config structure, for the benefit of X font names which are rather more verbose than Windows. One day I want to replace all these fixed-size buffers with sensible dynamically allocated stuff, but not today. [originally from svn r2260] --- putty.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/putty.h b/putty.h index f322bacc..95f263b7 100644 --- a/putty.h +++ b/putty.h @@ -303,7 +303,7 @@ struct config_tag { int blinktext; int win_name_always; int width, height; - char font[64]; + char font[256]; int fontisbold; int fontheight; int fontcharset;