Commit 204f3213 204f3213836d6006b34d26680f574fa440427499 by Sergey Poznyakoff

Bugfix: date field has always fixed length.

1 parent 270b4d12
......@@ -108,7 +108,7 @@ mail_from0 (int msgno, int verbose)
18, 16 for the other fields.
*/
froml = cols / 3;
subjl = cols - froml - strlen (st) - strlen (date);
subjl = cols - froml - strlen (st) - 16;
fromp = from ? from : "";
subjp = subj ? subj : fromp;
......