(action production): Fixed number of arguments in call to sieve_compile_error().
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -253,7 +253,6 @@ action : command | ... | @@ -253,7 +253,6 @@ action : command |
253 | else if (!reg->required) | 253 | else if (!reg->required) |
254 | sieve_compile_error (sieve_filename, sieve_line_num, | 254 | sieve_compile_error (sieve_filename, sieve_line_num, |
255 | "action `%s' has not been required", | 255 | "action `%s' has not been required", |
256 | sieve_filename, sieve_line_num, | ||
257 | $1.ident); | 256 | $1.ident); |
258 | else if (sieve_code_action (reg, $1.args)) | 257 | else if (sieve_code_action (reg, $1.args)) |
259 | YYERROR; | 258 | YYERROR; |
... | @@ -430,6 +429,8 @@ sieve_compile (sieve_machine_t mach, const char *name) | ... | @@ -430,6 +429,8 @@ sieve_compile (sieve_machine_t mach, const char *name) |
430 | sieve_machine_begin (mach); | 429 | sieve_machine_begin (mach); |
431 | sieve_register_standard_actions (); | 430 | sieve_register_standard_actions (); |
432 | sieve_register_standard_tests (); | 431 | sieve_register_standard_tests (); |
432 | sieve_register_standard_comparators (); | ||
433 | |||
433 | if (sieve_lex_begin (name) == 0) | 434 | if (sieve_lex_begin (name) == 0) |
434 | { | 435 | { |
435 | sieve_machine->filename = sieve_pstrdup (&sieve_machine->memory_pool, | 436 | sieve_machine->filename = sieve_pstrdup (&sieve_machine->memory_pool, | ... | ... |
-
Please register or sign in to post a comment