From e05f1216dfd424d4a3eb4bb3db6f8100803d22ba Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sun, 30 Mar 2008 23:33:28 +0000 Subject: [PATCH] * lengthen the subject buffer so it can take utf8 glyphs --- webcit/messages.c | 2 +- webcit/webcit.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webcit/messages.c b/webcit/messages.c index 2f4a59509..4d208f1c9 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -2013,7 +2013,7 @@ int load_msg_ptrs(char *servcmd, int with_headers) char fullname[128]; char nodename[128]; char inetaddr[128]; - char subject[256]; + char subject[1024]; int nummsgs; int sbjlen; int maxload = 0; diff --git a/webcit/webcit.h b/webcit/webcit.h index 7dd9d277c..ce0be5daa 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -319,7 +319,7 @@ struct message_summary { long msgnum; /**< the message number on the citadel server */ char from[128]; /**< the author */ char to[128]; /**< the recipient */ - char subj[128]; /**< the title / subject */ + char subj[256]; /**< the title / subject */ int hasattachments; /**< does it have atachments? */ int is_new; /**< is it yet read? */ }; -- 2.39.2