* lengthen the subject buffer so it can take utf8 glyphs
authorWilfried Göesgens <willi@citadel.org>
Sun, 30 Mar 2008 23:33:28 +0000 (23:33 +0000)
committerWilfried Göesgens <willi@citadel.org>
Sun, 30 Mar 2008 23:33:28 +0000 (23:33 +0000)
webcit/messages.c
webcit/webcit.h

index 2f4a5950900cdd0b87e3362327fbb209178981cf..4d208f1c9cc18cd1085f94915df1005a8f7c9813 100644 (file)
@@ -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;
index 7dd9d277c3d0632e8cc84da84ffe304663f78f0e..ce0be5daab2a10a80aafe72937c98f4cda7020f8 100644 (file)
@@ -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? */
 };