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
8b305ed8
...
8b305ed86353318d3e3422b7980739fb885ddee5
authored
2007-07-09 17:44:57 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Update
1 parent
b78944bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
libsieve/extensions/vacation.c
libsieve/runtime.c
libsieve/extensions/vacation.c
View file @
8b305ed
...
...
@@ -204,7 +204,7 @@ regex_comparator (void *item, void *data)
mu_sieve_error
(
d
->
mach
,
_
(
"%d: cannot compile regular expression
\"
%s
\"
"
),
mu_sieve_get_message_num
(
d
->
mach
),
item
);
(
char
*
)
item
);
return
0
;
}
rc
=
regexec
(
&
preg
,
d
->
email
,
0
,
NULL
,
0
)
==
0
;
...
...
libsieve/runtime.c
View file @
8b305ed
...
...
@@ -287,7 +287,7 @@ sieve_run (mu_sieve_machine_t mach)
mu_sieve_log_action
(
mach
,
"IMPLICIT KEEP"
,
NULL
);
if
(
INSTR_DEBUG
(
mach
))
mu_sieve_debug
(
mach
,
"%4lu: STOP
\n
"
,
mach
->
pc
);
mu_sieve_debug
(
mach
,
"%4lu: STOP
\n
"
,
(
unsigned
long
)
mach
->
pc
);
return
0
;
}
...
...
Please
register
or
sign in
to post a comment