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
de384b73
...
de384b7372433f8963d40bb2011cb7dff8591a01
authored
2007-06-28 17:14:32 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(sieve_code_command: Bug fixes
1 parent
26aff9ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
libsieve/prog.c
libsieve/prog.c
View file @
de384b7
...
...
@@ -184,7 +184,7 @@ sieve_code_command (mu_sieve_register_t *reg, mu_list_t arglist)
if
(
!
tag_list
&&
(
rc
=
mu_list_create
(
&
tag_list
)))
{
sieve_compile_error
(
sieve_filename
,
sieve_line_num
,
_
(
"
%s:%d:
cannot create tag list: %s"
),
_
(
"cannot create tag list: %s"
),
mu_strerror
(
rc
));
err
=
1
;
break
;
...
...
@@ -216,7 +216,7 @@ sieve_code_command (mu_sieve_register_t *reg, mu_list_t arglist)
if
(
!
chk_list
&&
(
rc
=
mu_list_create
(
&
chk_list
)))
{
sieve_compile_error
(
sieve_filename
,
sieve_line_num
,
_
(
"%s:%d:
cannot create check list: %s"
),
_
(
"
cannot create check list: %s"
),
mu_strerror
(
rc
));
err
=
1
;
break
;
...
...
Please
register
or
sign in
to post a comment