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
57690595
...
576905957f1423b0bd98eea1749cd232c9bb0796
authored
2002-12-12 14:43:55 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_sieve_action_log): Use vasprintf.
1 parent
7b911202
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail.local/main.c
mail.local/main.c
View file @
5769059
...
...
@@ -234,7 +234,7 @@ _sieve_action_log (void *user_name,
if
(
fmt
&&
strlen
(
fmt
))
{
char
*
diag
=
NULL
;
asprintf
(
&
diag
,
fmt
,
ap
);
v
asprintf
(
&
diag
,
fmt
,
ap
);
syslog
(
LOG_NOTICE
,
"(user %s) %s: %s"
,
(
char
*
)
user_name
,
text
,
diag
);
free
(
diag
);
}
...
...
Please
register
or
sign in
to post a comment