Minor fix
Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -44,10 +44,10 @@ imap4d_delete (struct imap4d_session *session, | ... | @@ -44,10 +44,10 @@ imap4d_delete (struct imap4d_session *session, |
44 | if (!name || *name == '\0') | 44 | if (!name || *name == '\0') |
45 | return io_completion_response (command, RESP_BAD, "Too few arguments"); | 45 | return io_completion_response (command, RESP_BAD, "Too few arguments"); |
46 | 46 | ||
47 | /* It is an error to attempt to delele "INBOX or a mailbox | 47 | /* It is an error to attempt to delele "INBOX" or a mailbox |
48 | name that dos not exists. */ | 48 | name that does not exist. */ |
49 | if (mu_c_strcasecmp (name, "INBOX") == 0) | 49 | if (mu_c_strcasecmp (name, "INBOX") == 0) |
50 | return io_completion_response (command, RESP_NO, "Already exist"); | 50 | return io_completion_response (command, RESP_NO, "Cannot remove"); |
51 | 51 | ||
52 | /* Allocates memory. */ | 52 | /* Allocates memory. */ |
53 | name = namespace_get_name (name, &record, NULL); | 53 | name = namespace_get_name (name, &record, NULL); | ... | ... |
-
Please register or sign in to post a comment