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
b5eec1ac
...
b5eec1ac68580e756af3d71d766a1ae7f7376a06
authored
2002-11-13 13:38:04 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Modified to reflect changes in the API.
1 parent
bbc96354
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
libsieve/sv.c
libsieve/sv.c
View file @
b5eec1a
...
...
@@ -46,11 +46,16 @@ main (int argc, char **argv)
else
n
=
1
;
rc
=
sieve_compile
(
&
mach
,
argv
[
n
],
NULL
,
NULL
);
sieve_machine_init
(
&
mach
,
NULL
);
rc
=
sieve_compile
(
&
mach
,
argv
[
n
]);
if
(
rc
==
0
)
{
if
(
debug
)
sieve_set_debug
(
&
mach
,
debug_printer
,
100
);
{
sieve_machine_set_debug
(
&
mach
,
debug_printer
,
100
);
fprintf
(
stderr
,
"RUNNING
\n
"
);
}
sieve_run
(
&
mach
);
}
return
rc
;
...
...
Please
register
or
sign in
to post a comment