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
bffaaa0b
...
bffaaa0bbc8384e575aa71cb569a353a6aa3da82
authored
2003-01-23 09:17:35 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_comp_action): Bugfix. Incorrectly handled multiple patterns.
1 parent
0b55d9fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
libsieve/util.c
libsieve/util.c
View file @
bffaaa0
...
...
@@ -477,7 +477,7 @@ _comp_action (void *item, void *data)
d
.
comp
=
cp
->
comp
;
d
.
test
=
cp
->
test
;
for
(
i
=
0
;
cp
->
retr
(
item
,
cp
->
data
,
i
,
&
d
.
sample
)
==
0
;
i
++
)
for
(
i
=
0
;
rc
==
0
&&
cp
->
retr
(
item
,
cp
->
data
,
i
,
&
d
.
sample
)
==
0
;
i
++
)
if
(
d
.
sample
)
{
cp
->
count
++
;
...
...
Please
register
or
sign in
to post a comment