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
2cf5e6f5
...
2cf5e6f54a12f20abbe75a9ece8778bb7668db53
authored
2012-06-11 15:20:13 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix a typo.
* imap4d/copy.c (imap4d_copy0): Invert condition.
1 parent
b5913357
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
imap4d/copy.c
imap4d/copy.c
View file @
2cf5e6f
...
...
@@ -222,7 +222,7 @@ imap4d_copy0 (imap4d_tokbuf_t tok, int isuid, char **err_text)
msgset_str
=
imap4d_tokbuf_getarg
(
tok
,
arg
);
name
=
imap4d_tokbuf_getarg
(
tok
,
arg
+
1
);
status
=
mu_msgset_create
(
&
msgset
,
mbox
,
MU_MSGSET_NUM
);
if
(
!
status
)
if
(
status
)
{
*
err_text
=
"Software error"
;
return
RESP_BAD
;
...
...
Please
register
or
sign in
to post a comment