Fix a typo.
* imap4d/copy.c (imap4d_copy0): Invert condition.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -222,7 +222,7 @@ imap4d_copy0 (imap4d_tokbuf_t tok, int isuid, char **err_text) | ... | @@ -222,7 +222,7 @@ imap4d_copy0 (imap4d_tokbuf_t tok, int isuid, char **err_text) |
222 | msgset_str = imap4d_tokbuf_getarg (tok, arg); | 222 | msgset_str = imap4d_tokbuf_getarg (tok, arg); |
223 | name = imap4d_tokbuf_getarg (tok, arg + 1); | 223 | name = imap4d_tokbuf_getarg (tok, arg + 1); |
224 | status = mu_msgset_create (&msgset, mbox, MU_MSGSET_NUM); | 224 | status = mu_msgset_create (&msgset, mbox, MU_MSGSET_NUM); |
225 | if (!status) | 225 | if (status) |
226 | { | 226 | { |
227 | *err_text = "Software error"; | 227 | *err_text = "Software error"; |
228 | return RESP_BAD; | 228 | return RESP_BAD; | ... | ... |
-
Please register or sign in to post a comment