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
80d8b59a
...
80d8b59a60d9f529801a52271c8c7ebd3c22ace2
authored
2017-01-26 15:50:36 +0200
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor fix
1 parent
06480352
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
imap4d/delete.c
imap4d/delete.c
View file @
80d8b59
...
...
@@ -44,10 +44,10 @@ imap4d_delete (struct imap4d_session *session,
if
(
!
name
||
*
name
==
'\0'
)
return
io_completion_response
(
command
,
RESP_BAD
,
"Too few arguments"
);
/* It is an error to attempt to delele "INBOX or a mailbox
name that do
s not exists
. */
/* It is an error to attempt to delele "INBOX
"
or a mailbox
name that do
es not exist
. */
if
(
mu_c_strcasecmp
(
name
,
"INBOX"
)
==
0
)
return
io_completion_response
(
command
,
RESP_NO
,
"
Already exist
"
);
return
io_completion_response
(
command
,
RESP_NO
,
"
Cannot remove
"
);
/* Allocates memory. */
name
=
namespace_get_name
(
name
,
&
record
,
NULL
);
...
...
Please
register
or
sign in
to post a comment