Bugfix: date field has always fixed length.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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; | ... | ... |
-
Please register or sign in to post a comment