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
6c341389
...
6c3413894c9ad33bb866cb018d7da154b72c7fab
authored
2002-04-04 16:23:02 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Return OK response unless something grave has happened
1 parent
288f1e93
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
imap4d/lsub.c
imap4d/lsub.c
View file @
6c34138
...
...
@@ -60,5 +60,7 @@ imap4d_lsub (struct imap4d_command *command, char *arg)
fclose
(
fp
);
return
util_finish
(
command
,
RESP_OK
,
"Completed"
);
}
else
if
(
errno
==
ENOENT
)
return
util_finish
(
command
,
RESP_OK
,
"Completed"
);
return
util_finish
(
command
,
RESP_NO
,
"Can not list subscriber"
);
}
...
...
Please
register
or
sign in
to post a comment