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) ...@@ -108,7 +108,7 @@ mail_from0 (int msgno, int verbose)
108 18, 16 for the other fields. 108 18, 16 for the other fields.
109 */ 109 */
110 froml = cols / 3; 110 froml = cols / 3;
111 subjl = cols - froml - strlen (st) - strlen (date); 111 subjl = cols - froml - strlen (st) - 16;
112 112
113 fromp = from ? from : ""; 113 fromp = from ? from : "";
114 subjp = subj ? subj : fromp; 114 subjp = subj ? subj : fromp;
......