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
7f533683
...
7f53368338fe683c76ed678a032f676712b98cbf
authored
2006-04-20 15:52:12 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap_envelope_date): bugfix
1 parent
d2ef02c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
libproto/imap/mbox.c
libproto/imap/mbox.c
View file @
7f53368
...
...
@@ -1570,7 +1570,7 @@ imap_envelope_date (mu_envelope_t envelope, char *buffer, size_t buflen,
{
char
tmpbuf
[
MU_ENVELOPE_DATE_LENGTH
+
1
];
size_t
n
=
mu_strftime
(
tmpbuf
,
sizeof
tmpbuf
,
MU_ENVELOPE_DATE_FORMAT
,
localtime
(
&
tm
)
);
MU_ENVELOPE_DATE_FORMAT
,
&
tm
);
n
=
mu_cpystr
(
buffer
,
tmpbuf
,
buflen
);
if
(
plen
)
*
plen
=
n
;
...
...
Please
register
or
sign in
to post a comment