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
48b89c04
...
48b89c04cae9c4529686007a76344fd9c4b7a73d
authored
2002-12-11 15:19:15 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Include mu_asprintf.h
1 parent
a15563e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
sieve/sieve.c
sieve/sieve.c
View file @
48b89c0
...
...
@@ -29,6 +29,7 @@
#include <unistd.h>
#include <syslog.h>
#include <mu_asprintf.h>
#include <mailutils/argcv.h>
#include <mailutils/libsieve.h>
#include <mailutils/argp.h>
...
...
@@ -261,7 +262,7 @@ stdout_action_log (void *unused,
message_get_uid
(
msg
,
&
uid
);
fprintf
(
stdout
,
"%s on msg uid %
d"
,
action
,
uid
);
fprintf
(
stdout
,
"%s on msg uid %
lu"
,
action
,
(
unsigned
long
)
uid
);
if
(
fmt
&&
strlen
(
fmt
))
{
fprintf
(
stdout
,
": "
);
...
...
Please
register
or
sign in
to post a comment