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
0386f3ca
...
0386f3ca8c159363bd8c862e79b35ec776dd5aa8
authored
2006-03-07 15:06:59 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(regex_comparator): Fix error diagnostics
1 parent
1032b772
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
libsieve/extensions/vacation.c
libsieve/extensions/vacation.c
View file @
0386f3c
...
...
@@ -202,7 +202,7 @@ regex_comparator (void *item, void *data)
REG_EXTENDED
|
REG_NOSUB
|
REG_NEWLINE
|
REG_ICASE
))
{
mu_sieve_error
(
d
->
mach
,
_
(
"%d: cannot compile regular expression
\"
%s
\"
\n
"
),
_
(
"%d: cannot compile regular expression
\"
%s
\"
"
),
mu_sieve_get_message_num
(
d
->
mach
),
item
);
return
0
;
...
...
@@ -434,6 +434,8 @@ vacation_subject (mu_sieve_machine_t mach, mu_list_t tags,
if
(
rc
)
{
mu_sieve_error
(
mach
,
/* TRANSLATORS: 'vacation' is the name of the
Sieve action. Do not translate it! */
_
(
"%d: vacation - cannot compile reply prefix regexp: %s: %s"
),
mu_sieve_get_message_num
(
mach
),
mu_strerror
(
rc
),
...
...
Please
register
or
sign in
to post a comment