Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
204f3213
...
204f3213836d6006b34d26680f574fa440427499
authored
2002-12-28 10:52:58 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix: date field has always fixed length.
1 parent
270b4d12
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail/from.c
mail/from.c
View file @
204f321
...
...
@@ -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
;
...
...
Please
register
or
sign in
to post a comment