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
9cf47fb2
...
9cf47fb2b45e91177459d81f40a184265033752f
authored
2012-06-15 18:16:41 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
inc: bugfix
* mh/inc.c (incmbx): Fix typos.
1 parent
2cf5e6f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mh/inc.c
mh/inc.c
View file @
9cf47fb
...
...
@@ -268,7 +268,7 @@ incmbx (void *item, void *data)
if
(
getparam
(
url
,
"nomoveto"
,
NULL
)
==
0
)
f_move_to_mailbox
=
NULL
;
else
getparam
(
url
,
"
no
moveto"
,
&
f_move_to_mailbox
);
getparam
(
url
,
"moveto"
,
&
f_move_to_mailbox
);
/* Open audit file, if specified */
if
(
audit_file
)
...
...
@@ -331,12 +331,12 @@ incmbx (void *item, void *data)
NULL
,
rc
);
else
{
rc
=
mu_mailbox_msgset_copy
(
input
,
msgset
,
move_to_mailbox
,
rc
=
mu_mailbox_msgset_copy
(
input
,
msgset
,
f_
move_to_mailbox
,
MU_MAILBOX_COPY_CREAT
);
if
(
rc
)
{
mu_error
(
_
(
"failed to move messages to %s: %s"
),
move_to_mailbox
,
mu_strerror
(
rc
));
f_
move_to_mailbox
,
mu_strerror
(
rc
));
f_truncate
=
0
;
}
}
...
...
Please
register
or
sign in
to post a comment