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
506086e0
...
506086e05f25c8082993940eac0883c7d72d485a
authored
2016-12-12 09:31:31 +0200
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor fix
1 parent
81750c9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
libmu_sieve/util.c
libmu_sieve/util.c
View file @
506086e
...
...
@@ -476,13 +476,13 @@ mu_sieve_stream_save (mu_sieve_machine_t mach)
if
(
mu_stream_ioctl
(
mach
->
errstream
,
MU_IOCTL_LOGSTREAM
,
MU_IOCTL_LOGSTREAM_GET_MODE
,
&
mach
->
err_mode
)
==
0
&&
mu_stream_ioctl
(
mach
->
errstream
,
MU_IOCTL_LOGSTREAM
,
MU_IOCTL_LOGSTREAM_
S
ET_LOCUS
,
&
mach
->
err_locus
)
==
0
)
MU_IOCTL_LOGSTREAM_
G
ET_LOCUS
,
&
mach
->
err_locus
)
==
0
)
mach
->
state_flags
|=
MU_SV_SAVED_ERR_STATE
;
if
(
mu_stream_ioctl
(
mach
->
dbgstream
,
MU_IOCTL_LOGSTREAM
,
MU_IOCTL_LOGSTREAM_GET_MODE
,
&
mach
->
dbg_mode
)
==
0
&&
mu_stream_ioctl
(
mach
->
dbgstream
,
MU_IOCTL_LOGSTREAM
,
MU_IOCTL_LOGSTREAM_
S
ET_LOCUS
,
&
mach
->
dbg_locus
)
==
0
)
MU_IOCTL_LOGSTREAM_
G
ET_LOCUS
,
&
mach
->
dbg_locus
)
==
0
)
mach
->
state_flags
|=
MU_SV_SAVED_DBG_STATE
;
mach
->
state_flags
|=
MU_SV_SAVED_STATE
;
...
...
Please
register
or
sign in
to post a comment