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
f02c9940
...
f02c99404d4f990047518a29de197954ba3889a6
authored
2002-12-05 14:21:53 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(fetch_internaldate): Added typecast to shut up the compiler warning.
1 parent
1bd09654
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
imap4d/fetch.c
imap4d/fetch.c
View file @
f02c994
...
...
@@ -351,7 +351,7 @@ fetch_internaldate (struct fetch_command *command, char **arg)
date
[
0
]
=
'\0'
;
envelope_date
(
env
,
date
,
sizeof
(
date
),
NULL
);
p
=
date
;
mu_parse_ctime_date_time
(
&
p
,
&
tm
,
&
tz
);
mu_parse_ctime_date_time
(
(
const
char
**
)
&
p
,
&
tm
,
&
tz
);
strftime
(
date
,
sizeof
(
date
),
"%d-%b-%Y %X"
,
&
tm
);
util_send
(
"%s"
,
command
->
name
);
util_send
(
"
\"
%s +0000
\"
"
,
date
);
...
...
Please
register
or
sign in
to post a comment