aboutsummaryrefslogtreecommitdiff
path: root/lib/imap.c
diff options
context:
space:
mode:
authorJiri Hruska <jirka@fud.cz>2013-02-24 12:21:53 +0100
committerSteve Holme <steve_holme@hotmail.com>2013-02-24 12:02:55 +0000
commit324b7fe47b863eaa99475dd86b9f73059fb26ab1 (patch)
tree72f5dc397c430c24475b8971a4f069afd974f8e5 /lib/imap.c
parente87a3ccc626937c3e5ffb03e4188126f1743af65 (diff)
imap: Corrected comment in imap_endofresp()
Diffstat (limited to 'lib/imap.c')
-rw-r--r--lib/imap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/imap.c b/lib/imap.c
index 33f8b1d2e..6bd8c429c 100644
--- a/lib/imap.c
+++ b/lib/imap.c
@@ -334,7 +334,7 @@ static bool imap_endofresp(struct connectdata *conn, char *line, size_t len,
size_t id_len = strlen(id);
size_t wordlen;
- /* Do we have a command response? */
+ /* Do we have a tagged command response? */
if(len >= id_len + 3) {
if(!memcmp(id, line, id_len) && line[id_len] == ' ') {
*resp = line[id_len + 1]; /* O, N or B */