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
3da0edd1
...
3da0edd1626d8dd4da6623839e0af7ff0ba3b466
authored
2004-01-05 18:11:01 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(sieve_action_stop); Restored zero assignment to pc. This is possible due to the…
… changes to runtime.c
1 parent
1e7f70ff
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
libsieve/actions.c
libsieve/actions.c
View file @
3da0edd
...
...
@@ -29,7 +29,7 @@ int
sieve_action_stop
(
sieve_machine_t
mach
,
list_t
args
,
list_t
tags
)
{
sieve_log_action
(
mach
,
"STOP"
,
NULL
);
mach
->
pc
=
(
size_t
)
-
4
;
mach
->
pc
=
0
;
return
0
;
}
...
...
Please
register
or
sign in
to post a comment