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
cb9ca95a
...
cb9ca95a83ec4331ac34a614672eb5fab50f22e0
authored
2002-11-15 14:42:14 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(instr_run): Do not run the handler when in disassemble mode.
1 parent
3b03b4a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
libsieve/runtime.c
libsieve/runtime.c
View file @
cb9ca95
...
...
@@ -37,7 +37,7 @@ instr_run (sieve_machine_t mach)
sieve_handler_t
han
=
SIEVE_ARG
(
mach
,
0
,
handler
);
list_t
arg_list
=
SIEVE_ARG
(
mach
,
1
,
list
);
list_t
tag_list
=
SIEVE_ARG
(
mach
,
2
,
list
);
int
rc
;
int
rc
=
0
;
if
(
INSTR_DEBUG
(
mach
))
{
...
...
@@ -48,7 +48,8 @@ instr_run (sieve_machine_t mach)
sieve_debug
(
mach
,
"
\n
"
);
}
rc
=
han
(
mach
,
arg_list
,
tag_list
);
if
(
!
INSTR_DISASS
(
mach
))
rc
=
han
(
mach
,
arg_list
,
tag_list
);
SIEVE_ADJUST
(
mach
,
4
);
return
rc
;
}
...
...
Please
register
or
sign in
to post a comment