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
3c6c04c6
...
3c6c04c6ea27ce3176810c4f17e779da0dda0905
authored
2002-11-14 14:49:54 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(action production): Fixed number of arguments in call to sieve_compile_error().
1 parent
3242feb0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
libsieve/sieve.y
libsieve/sieve.y
View file @
3c6c04c
...
...
@@ -253,7 +253,6 @@ action : command
else if (!reg->required)
sieve_compile_error (sieve_filename, sieve_line_num,
"action `%s' has not been required",
sieve_filename, sieve_line_num,
$1.ident);
else if (sieve_code_action (reg, $1.args))
YYERROR;
...
...
@@ -430,6 +429,8 @@ sieve_compile (sieve_machine_t mach, const char *name)
sieve_machine_begin (mach);
sieve_register_standard_actions ();
sieve_register_standard_tests ();
sieve_register_standard_comparators ();
if (sieve_lex_begin (name) == 0)
{
sieve_machine->filename = sieve_pstrdup (&sieve_machine->memory_pool,
...
...
Please
register
or
sign in
to post a comment