Commit 80d8b59a 80d8b59a60d9f529801a52271c8c7ebd3c22ace2 by Sergey Poznyakoff

Minor fix

1 parent 06480352
...@@ -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);
......